mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
52 lines
1.1 KiB
Nix
52 lines
1.1 KiB
Nix
{ fetchFromGitHub, lib
|
|
, wrapGAppsHook, intltool
|
|
, python3Packages, gtk3, poppler_gi
|
|
}:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "pdfarranger";
|
|
version = "1.8.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = pname;
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "18bpnnwjx72d5ps06dr89mkixiwzc9hf5gr75k8qcnrkshl038v2";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
wrapGAppsHook intltool
|
|
] ++ (with python3Packages; [
|
|
setuptools distutils_extra
|
|
]);
|
|
|
|
buildInputs = [
|
|
gtk3 poppler_gi
|
|
];
|
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
pygobject3
|
|
pikepdf
|
|
img2pdf
|
|
setuptools
|
|
python-dateutil
|
|
];
|
|
|
|
# incompatible with wrapGAppsHook
|
|
strictDeps = false;
|
|
dontWrapGApps = true;
|
|
preFixup = ''
|
|
makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
|
|
'';
|
|
|
|
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.gpl3Plus;
|
|
};
|
|
}
|