summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2017-02-02 18:57:17 +0100
committerRobin Gloster <mail@glob.in>2017-02-02 18:59:08 +0100
commit51f4e1829cffdf1068ad811137dd78a2260ddfaf (patch)
tree8ce363009de04316537789129624e1822a618bb6 /pkgs
parent8821ef9dc5b558da7a4385c17c4676f0e861ccfe (diff)
downloadnixpkgs-51f4e1829cffdf1068ad811137dd78a2260ddfaf.tar
nixpkgs-51f4e1829cffdf1068ad811137dd78a2260ddfaf.tar.gz
nixpkgs-51f4e1829cffdf1068ad811137dd78a2260ddfaf.tar.bz2
nixpkgs-51f4e1829cffdf1068ad811137dd78a2260ddfaf.tar.lz
nixpkgs-51f4e1829cffdf1068ad811137dd78a2260ddfaf.tar.xz
nixpkgs-51f4e1829cffdf1068ad811137dd78a2260ddfaf.tar.zst
nixpkgs-51f4e1829cffdf1068ad811137dd78a2260ddfaf.zip
sslscan: 1.11.7 -> 1.11.8
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/tools/security/sslscan/default.nix8
1 files changed, 3 insertions, 5 deletions
diff --git a/pkgs/tools/security/sslscan/default.nix b/pkgs/tools/security/sslscan/default.nix
index 6b205d84534..90034b641a0 100644
--- a/pkgs/tools/security/sslscan/default.nix
+++ b/pkgs/tools/security/sslscan/default.nix
@@ -2,20 +2,18 @@
 
 stdenv.mkDerivation rec {
   name = "sslscan-${version}";
-  version = "1.11.7";
+  version = "1.11.8";
 
   src = fetchFromGitHub {
     owner = "rbsec";
     repo = "sslscan";
     rev = "${version}-rbsec";
-    sha256 = "007lf3rxcn9nz6jrki3mavgd9sd2hmm9nzp2g13h0ri51yc3bkp0";
+    sha256 = "0vm9r0hmpb6ifix2biqbr7za1rld9yx8hi8vf7j69vcm647z7aas";
   };
 
   buildInputs = [ openssl ];
 
-  installFlags = [
-    "PREFIX=$(out)"
-  ];
+  installFlags = [ "PREFIX=$(out)" ];
 
   meta = with stdenv.lib; {
     description = "Tests SSL/TLS services and discover supported cipher suites";