47 lines
1.0 KiB
Nix
47 lines
1.0 KiB
Nix
{ stdenv, fetchFromGitHub, lib
|
|
, wrapGAppsHook, intltool
|
|
, python3Packages, gtk3, poppler_gi
|
|
}:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "pdfarranger";
|
|
version = "1.6.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jeromerobert";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "03siz4ar6flyvrrgh7hr7sslc6n9x5d9i13lc5rm2qnssd0qdich";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
wrapGAppsHook intltool
|
|
] ++ (with python3Packages; [
|
|
setuptools distutils_extra
|
|
]);
|
|
|
|
buildInputs = [
|
|
gtk3 poppler_gi
|
|
];
|
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
pygobject3
|
|
pikepdf
|
|
img2pdf
|
|
setuptools
|
|
];
|
|
|
|
# incompatible with wrapGAppsHook
|
|
strictDeps = false;
|
|
|
|
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;
|
|
};
|
|
}
|