bkcrack: init at 1.5.0

This commit is contained in:
Alexandre Iooss 2022-11-11 22:38:05 +01:00
parent 98bb201bbf
commit 58ae5c163b
2 changed files with 40 additions and 0 deletions

View file

@ -0,0 +1,36 @@
{ lib
, stdenv
, fetchFromGitHub
, cmake
, openmp
}:
stdenv.mkDerivation rec {
pname = "bkcrack";
version = "1.5.0";
src = fetchFromGitHub {
owner = "kimci86";
repo = pname;
rev = "v${version}";
hash = "sha256-iyx4mOTr6MHECk9S9zrIAE5pt+cxWnOKS7iQPUyWfzs=";
};
nativeBuildInputs = [ cmake ];
buildInputs = [ openmp ];
postInstall = ''
mkdir -p $out/bin $out/share/licenses/bkcrack
mv $out/bkcrack $out/bin/
mv $out/license.txt $out/share/licenses/bkcrack
rm -r $out/example $out/tools $out/readme.md
'';
meta = with lib; {
description = "Crack legacy zip encryption with Biham and Kocher's known plaintext attack";
homepage = "https://github.com/kimci86/bkcrack";
license = licenses.zlib;
platforms = platforms.unix;
maintainers = with maintainers; [ erdnaxe ];
};
}

View file

@ -5100,6 +5100,10 @@ with pkgs;
bbe = callPackage ../tools/misc/bbe { };
bkcrack = callPackage ../tools/security/bkcrack {
inherit (llvmPackages) openmp;
};
bdsync = callPackage ../tools/backup/bdsync { };
beamerpresenter = beamerpresenter-mupdf;