summary refs log tree commit diff
path: root/pkgs/tools/security/vulnix
diff options
context:
space:
mode:
authorChristian Kauhaus <kc@flyingcircus.io>2019-03-09 18:37:42 +0100
committerChristian Kauhaus <kc@flyingcircus.io>2019-03-09 18:37:42 +0100
commit2172f4bd079119b967360a6247ce59de4d626c08 (patch)
tree597c0089d03dfc18e860b9f0e6f0d88f747cb87d /pkgs/tools/security/vulnix
parentea32c785994d1600bdd42b0afaa4369301272dbd (diff)
downloadnixpkgs-2172f4bd079119b967360a6247ce59de4d626c08.tar
nixpkgs-2172f4bd079119b967360a6247ce59de4d626c08.tar.gz
nixpkgs-2172f4bd079119b967360a6247ce59de4d626c08.tar.bz2
nixpkgs-2172f4bd079119b967360a6247ce59de4d626c08.tar.lz
nixpkgs-2172f4bd079119b967360a6247ce59de4d626c08.tar.xz
nixpkgs-2172f4bd079119b967360a6247ce59de4d626c08.tar.zst
nixpkgs-2172f4bd079119b967360a6247ce59de4d626c08.zip
vulnix: 1.7.1 -> 1.8.0
Diffstat (limited to 'pkgs/tools/security/vulnix')
-rw-r--r--pkgs/tools/security/vulnix/default.nix11
1 files changed, 5 insertions, 6 deletions
diff --git a/pkgs/tools/security/vulnix/default.nix b/pkgs/tools/security/vulnix/default.nix
index 1c5466db363..c1fd40f24c6 100644
--- a/pkgs/tools/security/vulnix/default.nix
+++ b/pkgs/tools/security/vulnix/default.nix
@@ -2,13 +2,14 @@
 
 pythonPackages.buildPythonApplication rec {
   pname = "vulnix";
-  version = "1.7.1";
+  version = "1.8.0";
 
   src = pythonPackages.fetchPypi {
     inherit pname version;
-    sha256 = "15c32976sgb5clixngi6z1fk5h02v1kn1a89h8rkbkvyhfnjgg8m";
+    sha256 = "15j8zz7qmf6c6vhim08yn1knn0qhwypmc7bxw608zg5nf50vghyb";
   };
 
+  outputs = [ "out" "doc" "man" ];
   nativeBuildInputs = [ ronn ];
 
   checkInputs = with pythonPackages; [
@@ -30,17 +31,15 @@ pythonPackages.buildPythonApplication rec {
     zodb
   ]);
 
-  outputs = [ "out" "doc" ];
-
   postBuild = "make -C doc";
 
   checkPhase = "py.test src/vulnix";
 
   postInstall = ''
-    install -D -t $out/share/man/man1 doc/vulnix.1
-    install -D -t $out/share/man/man5 doc/vulnix-whitelist.5
     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;