about summary refs log tree commit diff
path: root/pkgs/tools/security/bkcrack/default.nix
blob: 6345cbdc96028286e66f64220c21229e0650a180 (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
{ lib
, stdenv
, fetchFromGitHub
, cmake
}:

stdenv.mkDerivation rec {
  pname = "bkcrack";
  version = "1.6.0";

  src = fetchFromGitHub {
    owner = "kimci86";
    repo = pname;
    rev = "v${version}";
    hash = "sha256-VfPRX9lOPyen8CujiBtTCbD5e7xd9X2OQ1uZ6JWKwtY=";
  };

  nativeBuildInputs = [ cmake ];

  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 ];
  };
}