about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/security/pdfcrack/default.nix
blob: ae863e1ec1f572d12908ac0d6681400c2b54c5dd (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
{ lib
, stdenv
, fetchurl
}:

stdenv.mkDerivation rec {
  pname = "pdfcrack";
  version = "0.20";

  src = fetchurl {
    url = "mirror://sourceforge/pdfcrack/pdfcrack/pdfcrack-${version}.tar.gz";
    hash = "sha256-e4spsY/NXLmErrZA7gbt8J/t5HCbWcMv7k8thoYN5bQ=";
  };

  installPhase = ''
    install -Dt $out/bin pdfcrack
  '';

  meta = with lib; {
    homepage = "https://pdfcrack.sourceforge.net/";
    description = "Small command line driven tool for recovering passwords and content from PDF files";
    mainProgram = "pdfcrack";
    license = with licenses; [ gpl2Plus ];
    platforms = platforms.all;
    maintainers = with maintainers; [ qoelet ];
  };
}