mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
49 lines
841 B
Nix
49 lines
841 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, cmake
|
|
, gettext
|
|
, intltool
|
|
, pkg-config
|
|
, wrapGAppsHook
|
|
, gtkmm3
|
|
, libuuid
|
|
, poppler
|
|
, qpdf
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "pdfslicer";
|
|
version = "1.8.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "junrrein";
|
|
repo = "pdfslicer";
|
|
rev = "v${version}";
|
|
fetchSubmodules = true;
|
|
sha256 = "0sja0ddd9c8wjjpzk2ag8q1lxpj09adgmhd7wnsylincqnj2jyls";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
gettext
|
|
intltool
|
|
pkg-config
|
|
wrapGAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
gtkmm3
|
|
libuuid
|
|
poppler
|
|
qpdf
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "A simple application to extract, merge, rotate and reorder pages of PDF documents";
|
|
homepage = "https://junrrein.github.io/pdfslicer/";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ dotlambda ];
|
|
};
|
|
}
|