python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / security / pdfcrack / default.nix
blob451cdd5591bdde6f29ee8103a7c1b5d8746d1e38
1 { stdenv, lib, fetchurl }:
3 stdenv.mkDerivation rec {
4   pname = "pdfcrack";
5   version = "0.19";
7   src = fetchurl {
8     url = "mirror://sourceforge/pdfcrack/pdfcrack/pdfcrack-${version}.tar.gz";
9     sha256 = "1vf0l83xk627fg0a3b10wabgqxy08q4vbm0xjw9xzkdpk1lj059i";
10   };
12   installPhase = ''
13     install -Dt $out/bin pdfcrack
14   '';
16   meta = with lib; {
17     homepage = "http://pdfcrack.sourceforge.net/";
18     description = "Small command line driven tool for recovering passwords and content from PDF files";
19     license = with licenses; [ gpl2 ];
20     platforms = platforms.all;
21     maintainers = with maintainers; [ qoelet ];
22   };