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:
parent
95b98116c2
commit
f741d426da
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user