Author: simons
Date: Wed Mar 21 11:46:15 2012
New Revision: 33325
URL: https://nixos.org/websvn/nix/?rev=33325&sc=1

Log:
pkgs/development/compilers/ghc/with-packages.nix: renamed this expression from 
"ghc-${ghc.version}-linkdir" to "haskell-env-${ghc.name}"

This change allows use of the with-packages wrapper in user profiles that are
being updated with "nix-env -u \*". The previous name this expression generated
was considered by Nix to be an older version of "ghc-7.0.4-wrapper", because
that name has a higher priority.

Modified:
   nixpkgs/trunk/pkgs/development/compilers/ghc/with-packages.nix

Modified: nixpkgs/trunk/pkgs/development/compilers/ghc/with-packages.nix
==============================================================================
--- nixpkgs/trunk/pkgs/development/compilers/ghc/with-packages.nix      Wed Mar 
21 11:46:12 2012        (r33324)
+++ nixpkgs/trunk/pkgs/development/compilers/ghc/with-packages.nix      Wed Mar 
21 11:46:15 2012        (r33325)
@@ -1,7 +1,7 @@
 {stdenv, ghc, packages ? [], makeWrapper}:
 
 stdenv.mkDerivation rec {
-  name = "ghc-${ghc.version}-linkdir";
+  name = "haskell-env-${ghc.name}";
 
   allPackages = stdenv.lib.closePropagation packages;
   buildInputs = allPackages ++ [makeWrapper];
_______________________________________________
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits

Reply via email to