pdf-parser: init at 0.7.4
This commit is contained in:
parent
353c6c948e
commit
29e6e32ef9
2 changed files with 36 additions and 0 deletions
34
pkgs/tools/misc/pdf-parser/default.nix
Normal file
34
pkgs/tools/misc/pdf-parser/default.nix
Normal file
|
@ -0,0 +1,34 @@
|
|||
{ stdenv, python3Packages, fetchzip }:
|
||||
|
||||
python3Packages.buildPythonApplication {
|
||||
pname = "pdf-parser";
|
||||
version = "0.7.4";
|
||||
|
||||
src = fetchzip {
|
||||
url = "https://didierstevens.com/files/software/pdf-parser_V0_7_4.zip";
|
||||
sha256 = "1j39yww2yl4cav8xgd4zfl5jchbbkvffnrynkamkzvz9dd5np2mh";
|
||||
};
|
||||
|
||||
format = "other";
|
||||
|
||||
installPhase = ''
|
||||
install -Dm555 pdf-parser.py $out/bin/pdf-parser.py
|
||||
'';
|
||||
|
||||
preFixup = ''
|
||||
substituteInPlace $out/bin/pdf-parser.py \
|
||||
--replace '/usr/bin/python' '${python3Packages.python}/bin/python'
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Parse a PDF document";
|
||||
longDescription = ''
|
||||
This tool will parse a PDF document to identify the fundamental elements used in the analyzed file.
|
||||
It will not render a PDF document.
|
||||
'';
|
||||
homepage = "https://blog.didierstevens.com/programs/pdf-tools/";
|
||||
license = licenses.publicDomain;
|
||||
maintainers = [ maintainers.lightdiscord ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
|
@ -26531,6 +26531,8 @@ in
|
|||
|
||||
hashdeep = callPackage ../tools/security/hashdeep { };
|
||||
|
||||
pdf-parser = callPackage ../tools/misc/pdf-parser {};
|
||||
|
||||
fluxboxlauncher = callPackage ../applications/misc/fluxboxlauncher {};
|
||||
|
||||
btcdeb = callPackage ../applications/blockchains/btcdeb {};
|
||||
|
|
Loading…
Reference in a new issue