Merge pull request #234478 from wineee/pdfhummus

pdfhummus: init at 4.5.6
This commit is contained in:
Nick Cao
2023-07-15 05:37:19 -06:00
committed by GitHub
2 changed files with 60 additions and 2 deletions
@@ -0,0 +1,56 @@
{ lib
, stdenv
, fetchFromGitHub
, cmake
, qtbase
, zlib
, freetype
, libjpeg
, libtiff
, libpng
}:
stdenv.mkDerivation rec {
pname = "pdfhummus";
version = "4.5.8";
src = fetchFromGitHub {
owner = "galkahana";
repo = "PDF-Writer";
rev = "v${version}";
hash = "sha256-aL/icjoP0SQIWXiR0pCrSevkQYDdzPfZGx4xjmPr0AU=";
};
nativeBuildInputs = [
cmake
];
buildInputs = [
qtbase
];
propagatedBuildInputs = [
zlib
freetype
libjpeg
libtiff
libpng
];
dontWrapQtApps = true;
cmakeFlags = [
"-DUSE_BUNDLED=OFF"
# Use bundled LibAesgm
"-DUSE_UNBUNDLED_FALLBACK_BUNDLED=ON"
];
meta = with lib; {
description = "A Fast and Free C++ Library for Creating, Parsing an Manipulating PDF Files and Streams";
homepage = "https://www.pdfhummus.com";
license = licenses.asl20;
platforms = platforms.linux;
maintainers = with maintainers; [ rewine ];
};
}
+4 -2
View File
@@ -23994,9 +23994,11 @@ with pkgs;
pcre2 = callPackage ../development/libraries/pcre2 { };
pdal = callPackage ../development/libraries/pdal { } ;
pdal = callPackage ../development/libraries/pdal { };
pdf2xml = callPackage ../development/libraries/pdf2xml {} ;
pdf2xml = callPackage ../development/libraries/pdf2xml { };
pdfhummus = libsForQt5.callPackage ../development/libraries/pdfhummus { };
pe-parse = callPackage ../development/libraries/pe-parse { };