Merge pull request #217939 from helsinki-systems/hashextender_ossl3

hash_extender: don't pin to openssl_1_1 anymore
This commit is contained in:
ajs124 2023-02-25 14:35:57 +01:00 committed by GitHub
commit d03a70aaca
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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

@ -8173,9 +8173,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 { };