mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 19:51:17 +00:00
qt6Packages.poppler: init at 22.08.0
This commit is contained in:
parent
d003639e6f
commit
4b24143bf5
|
@ -23,7 +23,7 @@
|
|||
, texlive
|
||||
, zlib
|
||||
, withData ? true, poppler_data
|
||||
, qt5Support ? false, qtbase ? null
|
||||
, qt5Support ? false, qt6Support ? false, qtbase ? null
|
||||
, introspectionSupport ? false, gobject-introspection ? null
|
||||
, utils ? false, nss ? null
|
||||
, minimal ? false
|
||||
|
@ -72,7 +72,7 @@ stdenv.mkDerivation rec {
|
|||
lcms
|
||||
curl
|
||||
nss
|
||||
] ++ lib.optionals qt5Support [
|
||||
] ++ lib.optionals (qt5Support || qt6Support) [
|
||||
qtbase
|
||||
] ++ lib.optionals introspectionSupport [
|
||||
gobject-introspection
|
||||
|
@ -85,6 +85,7 @@ stdenv.mkDerivation rec {
|
|||
(mkFlag (!minimal) "LIBCURL")
|
||||
(mkFlag utils "UTILS")
|
||||
(mkFlag qt5Support "QT5")
|
||||
(mkFlag qt6Support "QT6")
|
||||
];
|
||||
|
||||
dontWrapQtApps = true;
|
||||
|
|
|
@ -20,4 +20,10 @@ in
|
|||
# LIBRARIES
|
||||
|
||||
quazip = callPackage ../development/libraries/quazip { };
|
||||
|
||||
poppler = callPackage ../development/libraries/poppler {
|
||||
lcms = pkgs.lcms2;
|
||||
qt6Support = true;
|
||||
suffix = "qt6";
|
||||
};
|
||||
})))
|
||||
|
|
Loading…
Reference in a new issue