3
0
Fork 0
forked from mirrors/nixpkgs

pkgs/top-level/all-packages.nix: removed lowPrio modifier from ghostscriptX

By default, "nix-env -i ghostscript" used to install a version of Ghostscript
that didn't support X11. IMHO, this was the wrong choice for a user profile.

svn path=/nixpkgs/trunk/; revision=23829
This commit is contained in:
Peter Simons 2010-09-17 14:46:55 +00:00
parent 9640592265
commit c8fbebe6b6

View file

@ -6816,9 +6816,9 @@ let
cupsSupport = getPkgConfig "ghostscript" "cups" true;
};
ghostscriptX = lowPrio (appendToName "with-X" (ghostscript.override {
ghostscriptX = appendToName "with-X" (ghostscript.override {
x11Support = true;
}));
});
gxemul = callPackage ../misc/gxemul { };