pdfmixtool: init at 1.0.2

This commit is contained in:
Jonas Heinrich 2021-08-02 20:39:07 +02:00 committed by Damien Cassou
parent 48ad5bae56
commit 868501bc9b
No known key found for this signature in database
GPG key ID: B68746238E59B548
2 changed files with 44 additions and 0 deletions

View file

@ -0,0 +1,42 @@
{ lib
, mkDerivation
, fetchFromGitLab
, cmake
, pkg-config
, qtbase
, qttools
, qpdf
, podofo
}:
mkDerivation rec {
pname = "pdfmixtool";
version = "1.0.2";
src = fetchFromGitLab {
owner = "scarpetta";
repo = pname;
rev = "v${version}";
sha256 = "066ap1w05gj8n0kvilyhlr1fzwrmlczx3lax7mbw0rfid9qh3467";
};
nativeBuildInputs = [
cmake
pkg-config
];
buildInputs = [
qtbase
qttools
qpdf
podofo
];
meta = with lib; {
description = "An application to split, merge, rotate and mix PDF files";
homepage = "https://gitlab.com/scarpetta/pdfmixtool";
license = licenses.gpl3Only;
maintainers = with maintainers; [ onny ];
};
}

View file

@ -26159,6 +26159,8 @@ in
pcmanx-gtk2 = callPackage ../applications/misc/pcmanx-gtk2 { };
pdfmixtool = libsForQt5.callPackage ../applications/office/pdfmixtool { };
pig = callPackage ../applications/networking/cluster/pig { };
pijul = callPackage ../applications/version-management/pijul { };