about summary refs log tree commit diff
path: root/pkgs/applications/networking/testssl
diff options
context:
space:
mode:
authorElis Hirwing <elis@hirwing.se>2018-03-26 09:39:17 +0200
committerElis Hirwing <elis@hirwing.se>2018-03-26 09:39:17 +0200
commit8163358cb0c766be78facd1ec5c5699edf745e4e (patch)
tree2e774513fdef45e99bcc2ead4d39dd30d01cafcd /pkgs/applications/networking/testssl
parentdf0a6d0853920a83eb7f1c6c55b6e117da284100 (diff)
downloadnixlib-8163358cb0c766be78facd1ec5c5699edf745e4e.tar
nixlib-8163358cb0c766be78facd1ec5c5699edf745e4e.tar.gz
nixlib-8163358cb0c766be78facd1ec5c5699edf745e4e.tar.bz2
nixlib-8163358cb0c766be78facd1ec5c5699edf745e4e.tar.lz
nixlib-8163358cb0c766be78facd1ec5c5699edf745e4e.tar.xz
nixlib-8163358cb0c766be78facd1ec5c5699edf745e4e.tar.zst
nixlib-8163358cb0c766be78facd1ec5c5699edf745e4e.zip
testssl: 2.9.5-2 -> 2.9.5-3
Bugfix release: https://github.com/drwetter/testssl.sh/releases/tag/v2.9.5-3
Diffstat (limited to 'pkgs/applications/networking/testssl')
-rw-r--r--pkgs/applications/networking/testssl/default.nix8
1 files changed, 2 insertions, 6 deletions
diff --git a/pkgs/applications/networking/testssl/default.nix b/pkgs/applications/networking/testssl/default.nix
index 8ac2f7b0a3b6..24ffe61b5abf 100644
--- a/pkgs/applications/networking/testssl/default.nix
+++ b/pkgs/applications/networking/testssl/default.nix
@@ -1,7 +1,7 @@
 { stdenv, fetchFromGitHub, pkgs }:
 
 let
-  version = "2.9.5-2";
+  version = "2.9.5-3";
   pwdBinPath = "${stdenv.lib.makeBinPath (with pkgs; [ coreutils ])}/pwd";
   opensslBinPath = "${stdenv.lib.makeBinPath (with pkgs; [ openssl ])}/openssl";
 
@@ -12,13 +12,9 @@ in stdenv.mkDerivation rec {
     owner = "drwetter";
     repo = "testssl.sh";
     rev = "v${version}";
-    sha256 = "0nrzb2lhjq0s4dabyq8nldjijsld9gq4cxm8ys1cw5jyz1875g2w";
+    sha256 = "07vlmf3gn2xa4wam2sql6c1s1hvj5adzd6l1fl12lq066v0k7r7n";
   };
 
-  nativeBuildInputs = with pkgs; [
-    makeWrapper
-  ];
-
   patches = [ ./testssl.patch ];
 
   postPatch = ''