Compare commits

...

No commits in common. "0b663f4294f7d02c6b702e64025ebced8c1e8f82" and "03e862a4bde4d468d660085e2dab260a8240632c" have entirely different histories.

2 changed files with 2 additions and 5 deletions

View file

@ -1,7 +1,4 @@
{
hs-pkg-name ? "wcwidth",
ghcSrc ? /home/ninjatrappeur/Code/perso/haskell/ghc
}:
{ hs-pkg-name ? "wcwidth", ghcSrc ? /home/ninjatrappeur/Code/perso/haskell/ghc }:
let
ghcOverlay = import ./overlays/ghc.nix ghcSrc;
nixpkgsConfig = { overlays = [ ghcOverlay ]; };

View file

@ -1,7 +1,7 @@
ghcSrc:
let
ghcOverride = self: super: {
ghc = super.ghc.overrideDerivation (old: { src = ghcSrc; });
ghc = super.ghc.overrideDerivation (old: { src = ghcSrc;});
};
in self: super: {
customGhcHEAD = super.haskell.packages.ghcHEAD.extend ghcOverride;