From 7354913c2d105e41d2486ff11305c0012302dafb Mon Sep 17 00:00:00 2001 From: Simon Lackerbauer Date: Mon, 21 Aug 2017 22:19:39 +0200 Subject: [PATCH] sha1collisiondetection: 1.0.1 -> 1.0.3 --- .../tools/security/sha1collisiondetection/default.nix | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/pkgs/tools/security/sha1collisiondetection/default.nix b/pkgs/tools/security/sha1collisiondetection/default.nix index de1796f431d3..38da14484147 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)" ];