about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2019-01-29 10:11:31 +0100
committerPeter Simons <simons@cryp.to>2019-01-29 10:23:54 +0100
commitdd5acc08db9eb038822693fd8748bc2fa087396e (patch)
tree869499d057e61f1e83e6ad7d79e462af53fb78c8 /pkgs
parent561ac38748eeca9856f41cca8cc28a8e509fda9f (diff)
downloadnixlib-dd5acc08db9eb038822693fd8748bc2fa087396e.tar
nixlib-dd5acc08db9eb038822693fd8748bc2fa087396e.tar.gz
nixlib-dd5acc08db9eb038822693fd8748bc2fa087396e.tar.bz2
nixlib-dd5acc08db9eb038822693fd8748bc2fa087396e.tar.lz
nixlib-dd5acc08db9eb038822693fd8748bc2fa087396e.tar.xz
nixlib-dd5acc08db9eb038822693fd8748bc2fa087396e.tar.zst
nixlib-dd5acc08db9eb038822693fd8748bc2fa087396e.zip
darcs: drop obsolete overrides
Fixes https://github.com/NixOS/nixpkgs/issues/53433.
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix9
1 files changed, 0 insertions, 9 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index bff993a0e69f..2da12837602b 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -927,15 +927,6 @@ self: super: {
   # https://github.com/bos/text-icu/issues/32
   text-icu = dontCheck super.text-icu;
 
-  # https://github.com/haskell/cabal/issues/4969
-  # haddock-api = (super.haddock-api.overrideScope (self: super: {
-  #   haddock-library = self.haddock-library_1_6_0;
-  # })).override { hspec = self.hspec_2_4_8; };
-
-  # Jailbreak "unix-compat >=0.1.2 && <0.5".
-  # Jailbreak "graphviz >=2999.18.1 && <2999.20".
-  darcs = overrideCabal super.darcs (drv: { preConfigure = "sed -i -e 's/unix-compat .*,/unix-compat,/' -e 's/fgl .*,/fgl,/' -e 's/graphviz .*,/graphviz,/' darcs.cabal"; });
-
   # aarch64 and armv7l fixes.
   happy = if (pkgs.stdenv.hostPlatform.isAarch32 || pkgs.stdenv.hostPlatform.isAarch64) then dontCheck super.happy else super.happy; # Similar to https://ghc.haskell.org/trac/ghc/ticket/13062
   hashable = if (pkgs.stdenv.hostPlatform.isAarch32 || pkgs.stdenv.hostPlatform.isAarch64) then dontCheck super.hashable else super.hashable; # https://github.com/tibbe/hashable/issues/95