4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
58 lines
1.1 KiB
Nix
58 lines
1.1 KiB
Nix
{ lib, stdenv
|
|
, python3Packages
|
|
, nix
|
|
, ronn
|
|
}:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "vulnix";
|
|
version = "1.9.6";
|
|
|
|
src = python3Packages.fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0anyxmqgn4kx102l3qjhh1f2b0cg7mnlapfhriyjw0zyy5gyqvng";
|
|
};
|
|
|
|
outputs = [ "out" "doc" "man" ];
|
|
nativeBuildInputs = [ ronn ];
|
|
|
|
checkInputs = with python3Packages; [
|
|
freezegun
|
|
pytest
|
|
pytestcov
|
|
pytest-flake8
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
nix
|
|
] ++ (with python3Packages; [
|
|
click
|
|
colorama
|
|
pyyaml
|
|
requests
|
|
setuptools
|
|
toml
|
|
zodb
|
|
]);
|
|
|
|
postBuild = "make -C doc";
|
|
|
|
checkPhase = "py.test src/vulnix";
|
|
|
|
postInstall = ''
|
|
install -D -t $doc/share/doc/vulnix README.rst CHANGES.rst
|
|
gzip $doc/share/doc/vulnix/*.rst
|
|
install -D -t $man/share/man/man1 doc/vulnix.1
|
|
install -D -t $man/share/man/man5 doc/vulnix-whitelist.5
|
|
'';
|
|
|
|
dontStrip = true;
|
|
|
|
meta = with lib; {
|
|
description = "NixOS vulnerability scanner";
|
|
homepage = "https://github.com/flyingcircusio/vulnix";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ ckauhaus ];
|
|
};
|
|
}
|