3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #278697 from erdnaxe/bkcrack-1.6

bkcrack: 1.5.0 -> 1.6.0
This commit is contained in:
Weijia Wang 2024-01-20 10:48:14 +01:00 committed by GitHub
commit fe3e044942
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 7 deletions

View file

@ -2,22 +2,20 @@
, stdenv
, fetchFromGitHub
, cmake
, openmp
}:
stdenv.mkDerivation rec {
pname = "bkcrack";
version = "1.5.0";
version = "1.6.0";
src = fetchFromGitHub {
owner = "kimci86";
repo = pname;
rev = "v${version}";
hash = "sha256-iyx4mOTr6MHECk9S9zrIAE5pt+cxWnOKS7iQPUyWfzs=";
hash = "sha256-VfPRX9lOPyen8CujiBtTCbD5e7xd9X2OQ1uZ6JWKwtY=";
};
nativeBuildInputs = [ cmake ];
buildInputs = [ openmp ];
postInstall = ''
mkdir -p $out/bin $out/share/licenses/bkcrack

View file

@ -6631,9 +6631,7 @@ with pkgs;
bbe = callPackage ../tools/misc/bbe { };
bkcrack = callPackage ../tools/security/bkcrack {
inherit (llvmPackages) openmp;
};
bkcrack = callPackage ../tools/security/bkcrack { };
bdsync = callPackage ../tools/backup/bdsync { };