summary refs log tree commit diff
path: root/pkgs/tools/graphics/pdfredacttools
diff options
context:
space:
mode:
authorleenaars <leenaars@users.noreply.github.com>2018-06-05 22:31:08 +0200
committerxeji <36407913+xeji@users.noreply.github.com>2018-06-05 22:31:08 +0200
commit186675b06f1a5efe3439c351fe69b7dd6a9a8878 (patch)
treed3b026cbf078d72e6238fec1dfc3103dd281aa67 /pkgs/tools/graphics/pdfredacttools
parent1868fa92a2a77ae41e919777afafbf806d1f785a (diff)
downloadnixpkgs-186675b06f1a5efe3439c351fe69b7dd6a9a8878.tar
nixpkgs-186675b06f1a5efe3439c351fe69b7dd6a9a8878.tar.gz
nixpkgs-186675b06f1a5efe3439c351fe69b7dd6a9a8878.tar.bz2
nixpkgs-186675b06f1a5efe3439c351fe69b7dd6a9a8878.tar.lz
nixpkgs-186675b06f1a5efe3439c351fe69b7dd6a9a8878.tar.xz
nixpkgs-186675b06f1a5efe3439c351fe69b7dd6a9a8878.tar.zst
nixpkgs-186675b06f1a5efe3439c351fe69b7dd6a9a8878.zip
pdf-redact-tools: init -> 0.1.2 (#41451)
Diffstat (limited to 'pkgs/tools/graphics/pdfredacttools')
-rw-r--r--pkgs/tools/graphics/pdfredacttools/default.nix38
1 files changed, 38 insertions, 0 deletions
diff --git a/pkgs/tools/graphics/pdfredacttools/default.nix b/pkgs/tools/graphics/pdfredacttools/default.nix
new file mode 100644
index 00000000000..d66c0b0a945
--- /dev/null
+++ b/pkgs/tools/graphics/pdfredacttools/default.nix
@@ -0,0 +1,38 @@
+{ stdenv, fetchFromGitHub, pythonPackages, imagemagick, exiftool, file, ghostscript }:
+
+pythonPackages.buildPythonApplication rec {
+  pname = "pdf-redact-tools";
+  version = "0.1.2";
+
+  src = fetchFromGitHub {
+    owner = "firstlookmedia";
+    repo = pname;
+    rev = "v${version}";
+    sha256 = "01vs1bc0pfgk6x2m36vwra605fg59yc31d0hl9jmj86n8q6wwvss";
+  };
+
+  patchPhase = ''substituteInPlace pdf-redact-tools      \
+    --replace \'convert\' \'${imagemagick}/bin/convert\' \
+    --replace \'exiftool\' \'${exiftool}/bin/exiftool\'  \
+    --replace \'file\' \'${file}/bin/file\'
+   '';
+
+  propagatedBuildInputs = [ imagemagick exiftool ghostscript ];
+
+  meta = with stdenv.lib; {
+    description = "Redact and strip metadata from documents before publishing";
+    longDescription = ''
+	PDF Redact Tools helps with securely redacting and stripping metadata
+	from documents before publishing. Note that this is not a security tool.
+        It uses ImageMagick to parse PDFs.  While ImageMagick is a versatile tool, it has
+        a history of several security bugs. A malicious PDF could exploit a bug in
+        ImageMagick to take over your computer. If you're working with potentially
+        malicious PDFs, it's safest to run them through PDF Redact Tools in an isolated
+        environment, such as a virtual machine, or by using a tool such as the Qubes
+        PDF Converter instead.
+    '';
+    platforms = platforms.all;
+    license = licenses.gpl3;
+    maintainers = with maintainers; [ leenaars ];
+  };
+}