nixpkgs/pkgs/applications/misc/pdf-quench/default.nix

38 lines
952 B
Nix
Raw Normal View History

2020-10-18 20:26:45 +00:00
{ stdenv, fetchFromGitHub, pkgs, python3, wrapGAppsHook}:
2018-04-23 18:37:27 +00:00
2020-10-18 20:26:45 +00:00
python3.pkgs.buildPythonApplication {
pname = "pdf-quench";
2018-04-23 18:37:27 +00:00
version = "1.0.5";
src = fetchFromGitHub {
owner = "linuxerwang";
repo = "pdf-quench";
rev = "b72b3970b371026f9a7ebe6003581e8a63af98f6";
sha256 = "1rp9rlwr6rarcsxygv5x2c5psgwl6r69k0lsgribgyyla9cf2m7n";
};
nativeBuildInputs = [ wrapGAppsHook ];
2018-04-30 15:01:07 +00:00
buildInputs = with pkgs; [
gtk3
gobject-introspection
2018-04-30 15:01:07 +00:00
goocanvas2
poppler_gi
2018-04-30 15:01:07 +00:00
];
2020-10-18 20:26:45 +00:00
propagatedBuildInputs = with python3.pkgs; [ pygobject3 pypdf2 ];
2018-04-23 18:37:27 +00:00
2018-04-30 15:01:07 +00:00
format = "other";
2018-04-23 18:37:27 +00: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";
2018-04-23 18:37:27 +00:00
description = "A visual tool for cropping pdf files";
platforms = platforms.linux;
2018-09-01 12:18:09 +00:00
license = licenses.gpl2;
2018-04-23 18:37:27 +00:00
maintainers = with maintainers; [ flokli ];
};
}