ghc-nokinds: remove "nokinds" tag from derivation name

The name of the GHC derivation must match the name and version tuple GHC
uses to identify itself, because the withPackages wrapper uses that name
to construct installation library paths etc., and those paths must match
those constructed by the compiler. If we add another tag to the name
that GHC itself doesn't use, then the paths assumed to exist by the
wrapper are wrong.
This commit is contained in:
Peter Simons 2015-08-13 11:17:01 +02:00
parent 95b98116c2
commit f741d426da

View file

@ -28,7 +28,7 @@ in
stdenv.mkDerivation rec {
version = "7.11.20150718";
name = "ghc-nokinds-${version}";
name = "ghc-${version}"; # We cannot add a "nokinds" tag here; see git comment for details.
rev = "4cb79c85a4976c509a65a8638899391a60cd0962";
src = fetchgit {