Created
March 5, 2019 18:42
-
-
Save srhb/cc8970b37dd9739ace96ec06a10d32d1 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let | |
haskellOverlay = self: super: { | |
haskellPackages = with self.haskell.lib; super.haskellPackages.extend (hself: hsuper: { | |
hello = overrideCabal hsuper.hello (drv: { | |
configureFlags = drv.configureFlags or [] ++ [ "-O2" ]; | |
}); | |
}); | |
}; | |
in | |
{ pkgs ? import <nixpkgs> { overlays = [ haskellOverlay ]; } }: | |
pkgs.haskellPackages.hello |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment