about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/security/bkcrack/default.nix
blob: e2ed76743c4cf2033b6ab7dbd9571a03c6a011fb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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 ];
  };
}