3
0
Fork 0
forked from mirrors/nixpkgs

haskell-jailbreak-cabal: clean up overrides

This commit is contained in:
Peter Simons 2018-03-10 13:48:30 +01:00
parent 3c104572a0
commit 8d0b0095db
2 changed files with 1 additions and 4 deletions

View file

@ -37,7 +37,7 @@ self: super: {
hackage-security = dontCheck super.hackage-security;
# Link statically to avoid runtime dependency on GHC.
jailbreak-cabal = (disableSharedExecutables super.jailbreak-cabal).override { Cabal = self.Cabal_1_20_0_4; };
jailbreak-cabal = disableSharedExecutables super.jailbreak-cabal;
# enable using a local hoogle with extra packagages in the database
# nix-shell -p "haskellPackages.hoogleLocal { packages = with haskellPackages; [ mtl lens ]; }"

View file

@ -35,9 +35,6 @@ self: super: {
unix = null;
xhtml = null;
# jailbreak-cabal can use the native Cabal library.
jailbreak-cabal = super.jailbreak-cabal.override { Cabal = null; };
# https://github.com/bmillwood/applicative-quoters/issues/6
applicative-quoters = appendPatch super.applicative-quoters (pkgs.fetchpatch {
url = "https://patch-diff.githubusercontent.com/raw/bmillwood/applicative-quoters/pull/7.patch";