pdfcrack: init 0.16 (#43144)

This commit is contained in:
Kenny Shen 2018-07-08 00:32:52 +08:00 committed by Robert Schütz
parent e73783ae40
commit 638fb3e3ce
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,23 @@
{ stdenv, lib, fetchurl }:
stdenv.mkDerivation rec {
name = "pdfcrack-${version}";
version = "0.16";
src = fetchurl {
url = "mirror://sourceforge/pdfcrack/pdfcrack/pdfcrack-${version}.tar.gz";
sha256 = "1vvkrg3niinz0j9wwm31laxgmd7wdz201kn82b3dbksc0w1v4rbq";
};
installPhase = ''
install -Dt $out/bin pdfcrack
'';
meta = with lib; {
homepage = http://pdfcrack.sourceforge.net/;
description = "Small command line driven tool for recovering passwords and content from PDF files";
license = with licenses; [ gpl2 ];
platforms = platforms.linux;
maintainers = with maintainers; [ qoelet ];
};
}

View File

@ -4435,6 +4435,8 @@ with pkgs;
pdf-redact-tools = callPackage ../tools/graphics/pdfredacttools { };
pdfcrack = callPackage ../tools/security/pdfcrack { };
pdf2svg = callPackage ../tools/graphics/pdf2svg { };
fmodex = callPackage ../games/zandronum/fmod.nix { };