hash_extender: don't pin to openssl_1_1 anymore

This commit is contained in:
ajs124 2023-02-24 01:06:16 +01:00
parent 2d415debb7
commit adad9a4537
2 changed files with 3 additions and 3 deletions

View file

@ -16,6 +16,8 @@ stdenv.mkDerivation {
doCheck = true;
checkPhase = "./hash_extender --test";
env.NIX_CFLAGS_COMPILE = "-Wno-error=deprecated-declarations";
installPhase = ''
mkdir -p $out/bin
cp hash_extender $out/bin

View file

@ -8171,9 +8171,7 @@ with pkgs;
hashrat = callPackage ../tools/security/hashrat { };
hash_extender = callPackage ../tools/security/hash_extender {
openssl = openssl_1_1;
};
hash_extender = callPackage ../tools/security/hash_extender { };
hash-identifier = callPackage ../tools/security/hash-identifier { };