nixpkgs/pkgs/applications/misc/pdfarranger/default.nix

51 lines
1.1 KiB
Nix
Raw Normal View History

2019-10-08 12:00:00 +00:00
{ stdenv, fetchFromGitHub, lib
2020-12-05 14:08:22 +00:00
, wrapGAppsHook, intltool
2019-10-08 12:00:00 +00:00
, python3Packages, gtk3, poppler_gi
}:
python3Packages.buildPythonApplication rec {
pname = "pdfarranger";
2020-12-05 14:03:47 +00:00
version = "1.6.2";
2019-10-08 12:00:00 +00:00
src = fetchFromGitHub {
2020-12-05 14:03:47 +00:00
owner = pname;
2019-10-08 12:00:00 +00:00
repo = pname;
rev = version;
2020-12-05 14:03:47 +00:00
sha256 = "wJ6ImWpszfgErfLh7YgHirVKFIt0ij8A/CdYJmkNBP0=";
2019-10-08 12:00:00 +00:00
};
nativeBuildInputs = [
wrapGAppsHook intltool
] ++ (with python3Packages; [
setuptools distutils_extra
]);
buildInputs = [
gtk3 poppler_gi
];
propagatedBuildInputs = with python3Packages; [
pygobject3
2020-04-11 12:00:00 +00:00
pikepdf
2020-07-16 12:00:00 +00:00
img2pdf
2020-04-11 12:00:00 +00:00
setuptools
2019-10-08 12:00:00 +00:00
];
# incompatible with wrapGAppsHook
strictDeps = false;
2020-12-05 14:08:22 +00:00
dontWrapGApps = true;
preFixup = ''
makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
'';
2019-10-08 12:00:00 +00:00
doCheck = false; # no tests
meta = with lib; {
inherit (src.meta) homepage;
description = "Merge or split pdf documents and rotate, crop and rearrange their pages using an interactive and intuitive graphical interface";
platforms = platforms.linux;
maintainers = with maintainers; [ symphorien ];
license = licenses.gpl3;
};
}