summary refs log tree commit diff
path: root/pkgs/tools/security/sha1collisiondetection
diff options
context:
space:
mode:
authorSimon Lackerbauer <simon@lackerbauer.com>2017-08-21 22:19:39 +0200
committerFranz Pletz <fpletz@fnordicwalking.de>2017-08-22 02:02:57 +0200
commit7354913c2d105e41d2486ff11305c0012302dafb (patch)
tree3046ec43a68e874573acbdb836c6cc4f87e6d62b /pkgs/tools/security/sha1collisiondetection
parent637e33e61614c803f5cc61bc8d4a58694d985e68 (diff)
downloadnixpkgs-7354913c2d105e41d2486ff11305c0012302dafb.tar
nixpkgs-7354913c2d105e41d2486ff11305c0012302dafb.tar.gz
nixpkgs-7354913c2d105e41d2486ff11305c0012302dafb.tar.bz2
nixpkgs-7354913c2d105e41d2486ff11305c0012302dafb.tar.lz
nixpkgs-7354913c2d105e41d2486ff11305c0012302dafb.tar.xz
nixpkgs-7354913c2d105e41d2486ff11305c0012302dafb.tar.zst
nixpkgs-7354913c2d105e41d2486ff11305c0012302dafb.zip
sha1collisiondetection: 1.0.1 -> 1.0.3
Diffstat (limited to 'pkgs/tools/security/sha1collisiondetection')
-rw-r--r--pkgs/tools/security/sha1collisiondetection/default.nix11
1 files changed, 5 insertions, 6 deletions
diff --git a/pkgs/tools/security/sha1collisiondetection/default.nix b/pkgs/tools/security/sha1collisiondetection/default.nix
index de1796f431d..38da1448414 100644
--- a/pkgs/tools/security/sha1collisiondetection/default.nix
+++ b/pkgs/tools/security/sha1collisiondetection/default.nix
@@ -1,15 +1,14 @@
 { stdenv, fetchFromGitHub, libtool, which }:
 
 stdenv.mkDerivation  rec {
-  pname = "sha1collisiondetection";
-  version = "1.0.1";
-  name = "${pname}-${version}";
+  name = "sha1collisiondetection-${version}";
+  version = "1.0.3";
 
   src = fetchFromGitHub {
     owner = "cr-marcstevens";
-    repo = pname;
-    rev = "development-v${version}";
-    sha256 = "09vd5mgclcdx7yq3kwzxy1z7pbxcp0xljfly7hy4ixahmnn290h6";
+    repo = "sha1collisiondetection";
+    rev = "stable-v${version}";
+    sha256 = "0xn31hkkqs0kj9203rzx6w4nr0lq8fnrlm5i76g0px3q4v2dzw1s";
   };
 
   makeFlags = [ "PREFIX=$(out)" ];