Compare commits

...

No commits in common. "9f4d76d49e19148975abfd6bfff899fc1eee132e" and "280da1932c092278561bca40d414c9731112d6f3" have entirely different histories.

View file

@ -3,7 +3,8 @@ let
ghcOverride = self: super: { ghcOverride = self: super: {
ghc = super.ghc.overrideDerivation (old: { ghc = super.ghc.overrideDerivation (old: {
src = ghcSrc; src = ghcSrc;
# Autotools need git to find the rev of the local ghc git repo. rev = "head";
# Necessary to use a non-fetchgit src
nativeBuildInputs = old.nativeBuildInputs ++ [ pkgs.git ]; nativeBuildInputs = old.nativeBuildInputs ++ [ pkgs.git ];
}); });
}; };