Created
July 17, 2020 07:21
-
-
Save typetetris/aea929e4c50766f3a9f0317a88483722 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
(import <nixpkgs> { | |
config = { | |
allowBroken = true; | |
packageOverride = psuper: { | |
haskellPackages = psuper.haskellPackages.override { | |
overrides = self: super: { | |
cassava-conduit = psuper.haskell.lib.dontCheck (self.callCabal2nix "cassava-conduit" ./. {}); | |
}; | |
}; | |
}; | |
}; | |
}).haskellPackages.ghcWithPackages(p: [p.cassava-conduit]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment