1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-23 22:20:51 +00:00

Use $NIXPKGS_CONFIG to determine whether ghostscript has cups support.

svn path=/nixpkgs/trunk/; revision=14275
This commit is contained in:
Peter Simons 2009-02-27 13:44:31 +00:00
parent 0175270bf9
commit c7e3110299

View file

@ -9294,14 +9294,14 @@ let
inherit fetchurl stdenv libjpeg libpng libtiff zlib x11 pkgconfig
fontconfig cups openssl;
x11Support = false;
cupsSupport = true;
cupsSupport = getPkgConfig "ghostscript" "cups" true;
};
ghostscriptX = lowPrio (appendToName "with-X" (import ../misc/ghostscript {
inherit fetchurl stdenv libjpeg libpng libtiff zlib x11 pkgconfig
fontconfig cups openssl;
x11Support = true;
cupsSupport = true;
cupsSupport = getPkgConfig "ghostscript" "cups" true;
}));
gxemul = (import ../misc/gxemul) {