forked from mirrors/nixpkgs
hash_extender: 2017-04-10 -> unstable-2020-03-24
The latest version contains support for the Tiger hash function, some small bugfixes and includes tests within the derivation.
This commit is contained in:
parent
9f11766df5
commit
5f2eb9ae10
|
@ -2,17 +2,20 @@
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
pname = "hash_extender";
|
pname = "hash_extender";
|
||||||
version = "2017-04-10";
|
version = "unstable-2020-03-24";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "iagox86";
|
owner = "iagox86";
|
||||||
repo = "hash_extender";
|
repo = "hash_extender";
|
||||||
rev = "d27581e062dd0b534074e11d7d311f65a6d7af21";
|
rev = "cb8aaee49f93e9c0d2f03eb3cafb429c9eed723d";
|
||||||
sha256 = "1npwbgqaynjh5x39halw43i116v89sxkpa1g1bbvc1lpi8hkhhcb";
|
sha256 = "1fj118566hr1wv03az2w0iqknazsqqkak0mvlcvwpgr6midjqi9b";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ openssl ];
|
buildInputs = [ openssl ];
|
||||||
|
|
||||||
|
doCheck = true;
|
||||||
|
checkPhase = "./hash_extender --test";
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
mkdir -p $out/bin
|
mkdir -p $out/bin
|
||||||
cp hash_extender $out/bin
|
cp hash_extender $out/bin
|
||||||
|
|
Loading…
Reference in a new issue