Merge pull request #132442 from onny/pdfmixtool

pdfmixtool: init at 1.0.2

authored by

Damien Cassou and committed by
GitHub
e5622180 48ad5bae

+44
+42
pkgs/applications/office/pdfmixtool/default.nix
···
··· 1 + { lib 2 + , mkDerivation 3 + , fetchFromGitLab 4 + , cmake 5 + , pkg-config 6 + , qtbase 7 + , qttools 8 + , qpdf 9 + , podofo 10 + }: 11 + 12 + mkDerivation rec { 13 + pname = "pdfmixtool"; 14 + version = "1.0.2"; 15 + 16 + src = fetchFromGitLab { 17 + owner = "scarpetta"; 18 + repo = pname; 19 + rev = "v${version}"; 20 + sha256 = "066ap1w05gj8n0kvilyhlr1fzwrmlczx3lax7mbw0rfid9qh3467"; 21 + }; 22 + 23 + nativeBuildInputs = [ 24 + cmake 25 + pkg-config 26 + ]; 27 + 28 + buildInputs = [ 29 + qtbase 30 + qttools 31 + qpdf 32 + podofo 33 + ]; 34 + 35 + meta = with lib; { 36 + description = "An application to split, merge, rotate and mix PDF files"; 37 + homepage = "https://gitlab.com/scarpetta/pdfmixtool"; 38 + license = licenses.gpl3Only; 39 + maintainers = with maintainers; [ onny ]; 40 + }; 41 + } 42 +
+2
pkgs/top-level/all-packages.nix
··· 26159 26160 pcmanx-gtk2 = callPackage ../applications/misc/pcmanx-gtk2 { }; 26161 26162 pig = callPackage ../applications/networking/cluster/pig { }; 26163 26164 pijul = callPackage ../applications/version-management/pijul { };
··· 26159 26160 pcmanx-gtk2 = callPackage ../applications/misc/pcmanx-gtk2 { }; 26161 26162 + pdfmixtool = libsForQt5.callPackage ../applications/office/pdfmixtool { }; 26163 + 26164 pig = callPackage ../applications/networking/cluster/pig { }; 26165 26166 pijul = callPackage ../applications/version-management/pijul { };