summary refs log tree commit diff
path: root/pkgs/tools/security/pdfcrack
diff options
context:
space:
mode:
authorKenny Shen <qoelet@users.noreply.github.com>2018-07-08 00:32:52 +0800
committerRobert Schütz <rschuetz17@gmail.com>2018-07-07 18:32:52 +0200
commit638fb3e3ce09e4ac273a707c429900b29374b62e (patch)
tree9a8928d837a095b565f324c969ea8ba05a4ce205 /pkgs/tools/security/pdfcrack
parente73783ae405820ff6fec8b9488d3cc2c0f2cf219 (diff)
downloadnixpkgs-638fb3e3ce09e4ac273a707c429900b29374b62e.tar
nixpkgs-638fb3e3ce09e4ac273a707c429900b29374b62e.tar.gz
nixpkgs-638fb3e3ce09e4ac273a707c429900b29374b62e.tar.bz2
nixpkgs-638fb3e3ce09e4ac273a707c429900b29374b62e.tar.lz
nixpkgs-638fb3e3ce09e4ac273a707c429900b29374b62e.tar.xz
nixpkgs-638fb3e3ce09e4ac273a707c429900b29374b62e.tar.zst
nixpkgs-638fb3e3ce09e4ac273a707c429900b29374b62e.zip
pdfcrack: init 0.16 (#43144)
Diffstat (limited to 'pkgs/tools/security/pdfcrack')
-rw-r--r--pkgs/tools/security/pdfcrack/default.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/tools/security/pdfcrack/default.nix b/pkgs/tools/security/pdfcrack/default.nix
new file mode 100644
index 00000000000..3606e7b23f4
--- /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 ];
+  };
+}