Skip to content

Instantly share code, notes, and snippets.

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 typetetris/696a13f026d425d68af058d40755efc4 to your computer and use it in GitHub Desktop.
Save typetetris/696a13f026d425d68af058d40755efc4 to your computer and use it in GitHub Desktop.
import ./nixpkgs-commit-19.09.nix
{
config = {
allowUnfree = true;
packageOverrides = psuper: {
haskellPackages = psuper.haskellPackages.override {
overrides = self: super: {
cookie = super.callCabal2nix "cookie" (fetchTarball {
url = "https://hackage.haskell.org/package/cookie-0.4.5/cookie-0.4.5.tar.gz";
sha256 = "09qnkfqhryn2865g8wd7mp76m1hrc6zf8yzqimzf16xb7g61m872";
}) {};
};
};
};
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment