Compare commits

...

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

1 changed files with 2 additions and 1 deletions

View File

@ -3,7 +3,8 @@ let
ghcOverride = self: super: {
ghc = super.ghc.overrideDerivation (old: {
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 ];
});
};