Compare commits

...

No commits in common. "9f4d76d49e19148975abfd6bfff899fc1eee132e" and "4ce91a23797a1b1004e8f138873abc99515d3cca" have entirely different histories.

1 changed files with 2 additions and 2 deletions

View File

@ -1,10 +1,10 @@
{ ghcSrc, pkgs }:
let
ghcOverride = self: super: {
ghc = super.ghc.overrideDerivation (old: {
ghc = super.ghc.overrideDerivation (oldGhc: {
src = ghcSrc;
# Autotools need git to find the rev of the local ghc git repo.
nativeBuildInputs = old.nativeBuildInputs ++ [ pkgs.git ];
nativeBuildInputs = oldGhc.nativeBuildInputs ++ [ pkgs.git ];
});
};
in self: super: {