Skip to content

Commit

Permalink
pdfshuffler: init at unstable-2017-02-26
Browse files Browse the repository at this point in the history
  • Loading branch information
Mic92 committed Apr 2, 2017
1 parent 3a26d09 commit 74e2f48
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 0 deletions.
40 changes: 40 additions & 0 deletions pkgs/applications/misc/pdfshuffler/default.nix
@@ -0,0 +1,40 @@
{ stdenv, fetchsvn
, wrapGAppsHook, makeWrapper, gettext
, python3Packages, gtk3, poppler_gi
, gnome3, gsettings_desktop_schemas, shared_mime_info,
}:

python3Packages.buildPythonApplication rec {
name = "pdfshuffler-unstable-2017-02-26"; # no official release in 5 years

src = fetchsvn {
url = "http://svn.gna.org/svn/pdfshuffler/trunk";
rev = "20";
sha256 = "1g20dy45xg5vda9y58d2b1gkczj44xgrfi59jx6hr62ynd3z0dfc";
};

nativeBuildInputs = [ wrapGAppsHook gettext makeWrapper ];

buildInputs = [
gtk3 gsettings_desktop_schemas poppler_gi gnome3.adwaita-icon-theme
];

propagatedBuildInputs = with python3Packages; [
pygobject3
pycairo
pypdf2
];

preFixup = ''
gappsWrapperArgs+=(--prefix XDG_DATA_DIRS : "${shared_mime_info}/share")
'';

doCheck = false; # no tests

meta = with stdenv.lib; {
homepage = https://gna.org/projects/pdfshuffler/;
description = "Merge or split pdf documents and rotate, crop and rearrange their pages";
platforms = platforms.linux;
maintainers = with maintainers; [ mic92 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -3439,6 +3439,8 @@ with pkgs;
inherit (pythonPackages) pillow;
};

pdfshuffler = callPackage ../applications/misc/pdfshuffler { };

briss = callPackage ../tools/graphics/briss { };

brickd = callPackage ../servers/brickd {
Expand Down

0 comments on commit 74e2f48

Please sign in to comment.