Author: simons
Date: Fri Sep 17 14:46:55 2010
New Revision: 23829
URL: https://svn.nixos.org/websvn/nix/?rev=23829&sc=1

Log:
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.

Modified:
   nixpkgs/trunk/pkgs/top-level/all-packages.nix

Modified: nixpkgs/trunk/pkgs/top-level/all-packages.nix
==============================================================================
--- nixpkgs/trunk/pkgs/top-level/all-packages.nix       Fri Sep 17 14:46:49 
2010        (r23828)
+++ nixpkgs/trunk/pkgs/top-level/all-packages.nix       Fri Sep 17 14:46:55 
2010        (r23829)
@@ -6816,9 +6816,9 @@
     cupsSupport = getPkgConfig "ghostscript" "cups" true;
   };
 
-  ghostscriptX = lowPrio (appendToName "with-X" (ghostscript.override {
+  ghostscriptX = appendToName "with-X" (ghostscript.override {
     x11Support = true;
-  }));
+  });
 
   gxemul = callPackage ../misc/gxemul { };
 
_______________________________________________
nix-commits mailing list
[email protected]
http://mail.cs.uu.nl/mailman/listinfo/nix-commits

Reply via email to