all-packages.nix: append "with-cxx" to the name of gmpxx to ensure that "nix-env -i gmp" prefers this expression

svn path=/nixpkgs/trunk/; revision=30995
This commit is contained in:
Peter Simons 2011-12-21 09:28:17 +00:00
parent c3a52c32a4
commit 331519b7e6

@ -3539,7 +3539,7 @@ let
cxx = false;
};
gmpxx = gmp.override { cxx = true; };
gmpxx = appendToName "with-cxx" (gmp.override { cxx = true; });
gobjectIntrospection = callPackage ../development/libraries/gobject-introspection { };