1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/applications/misc/pdf-quench/default.nix

38 lines
961 B
Nix
Raw Normal View History

2018-04-23 19:37:27 +01:00
{ stdenv, fetchFromGitHub, pkgs, pythonPackages, wrapGAppsHook}:
2019-08-13 22:52:01 +01:00
pythonPackages.buildPythonApplication {
pname = "pdf-quench";
2018-04-23 19:37:27 +01:00
version = "1.0.5";
src = fetchFromGitHub {
owner = "linuxerwang";
repo = "pdf-quench";
rev = "b72b3970b371026f9a7ebe6003581e8a63af98f6";
sha256 = "1rp9rlwr6rarcsxygv5x2c5psgwl6r69k0lsgribgyyla9cf2m7n";
};
nativeBuildInputs = [ wrapGAppsHook ];
2018-04-30 16:01:07 +01:00
buildInputs = with pkgs; [
gtk3
gobject-introspection
2018-04-30 16:01:07 +01:00
goocanvas2
poppler_gi
2018-04-30 16:01:07 +01:00
];
2018-04-23 19:37:27 +01:00
propagatedBuildInputs = with pythonPackages; [ pygobject3 pypdf2 ];
2018-04-30 16:01:07 +01:00
format = "other";
2018-04-23 19:37:27 +01:00
doCheck = false;
installPhase = ''
install -D -T -m 755 src/pdf_quench.py $out/bin/pdf-quench
'';
meta = with stdenv.lib; {
homepage = https://github.com/linuxerwang/pdf-quench;
description = "A visual tool for cropping pdf files";
platforms = platforms.linux;
2018-09-01 13:18:09 +01:00
license = licenses.gpl2;
2018-04-23 19:37:27 +01:00
maintainers = with maintainers; [ flokli ];
};
}