Skip to content

Instantly share code, notes, and snippets.

@yorickvP
Created July 25, 2019 17:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yorickvP/d6195b73ffbace845c3b9dca300b9592 to your computer and use it in GitHub Desktop.
Save yorickvP/d6195b73ffbace845c3b9dca300b9592 to your computer and use it in GitHub Desktop.
import (fetchTarball {
url = "https://github.com/NixOS/nixpkgs/archive/b5f5c97f7d67a99b67731a8cfd3926f163c11857.tar.gz";
sha256 = "1m9xb3z3jxh0xirdnik11z4hw95bzdz7a4p3ab7y392345jk1wgm";
}) { config = {}; overlays = [
(self: super: {
haskell = super.haskell // {
packages = super.haskell.packages // {
ghc864 = super.haskell.packages.ghc864.extend (hself: hsuper: {
happy = super.haskell.lib.dontCheck (hsuper.callHackage "happy" "1.19.9" {});
});
};
};
})
]; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment