From 638fb3e3ce09e4ac273a707c429900b29374b62e Mon Sep 17 00:00:00 2001 From: Kenny Shen Date: Sun, 8 Jul 2018 00:32:52 +0800 Subject: pdfcrack: init 0.16 (#43144) --- pkgs/tools/security/pdfcrack/default.nix | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 pkgs/tools/security/pdfcrack/default.nix (limited to 'pkgs/tools') diff --git a/pkgs/tools/security/pdfcrack/default.nix b/pkgs/tools/security/pdfcrack/default.nix new file mode 100644 index 000000000000..3606e7b23f4b --- /dev/null +++ b/pkgs/tools/security/pdfcrack/default.nix @@ -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 ]; + }; +} -- cgit 1.4.1