Created
September 10, 2019 13:18
-
-
Save infinisil/105c8d1eaca984ff5c69f9bf87d0eb8c 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
self: super: { | |
haskell = super.haskell // { | |
packageOverrides = super.lib.composeExtensions super.haskell.packageOverrides | |
(hself: hsuper: { | |
mkDerivation = args: hsuper.mkDerivation (args // { | |
doCheck = false; | |
}); | |
}); | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment