summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix
diff options
context:
space:
mode:
authorWilliam A. Kennington III <william@wkennington.com>2015-08-19 13:54:48 -0700
committerWilliam A. Kennington III <william@wkennington.com>2015-08-19 13:54:48 -0700
commit901482ad999e2e4bc607012eee97057bd4c1c5df (patch)
tree1b16b75e24fe3d65b7b730346100e7b9010ebd70 /pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix
parente91523aab59ae098343b3f68dfb0c45265868d80 (diff)
parentef07bd04dca43a3ea5902a62d729cc2cc91999d1 (diff)
downloadnixpkgs-901482ad999e2e4bc607012eee97057bd4c1c5df.tar
nixpkgs-901482ad999e2e4bc607012eee97057bd4c1c5df.tar.gz
nixpkgs-901482ad999e2e4bc607012eee97057bd4c1c5df.tar.bz2
nixpkgs-901482ad999e2e4bc607012eee97057bd4c1c5df.tar.lz
nixpkgs-901482ad999e2e4bc607012eee97057bd4c1c5df.tar.xz
nixpkgs-901482ad999e2e4bc607012eee97057bd4c1c5df.tar.zst
nixpkgs-901482ad999e2e4bc607012eee97057bd4c1c5df.zip
Merge branch 'master.upstream' into staging.upstream
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix16
1 files changed, 5 insertions, 11 deletions
diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix
index 4d7ee0ff3d4..d8d1e3f499a 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix
@@ -90,10 +90,10 @@ self: super: {
 
   # Setup: At least the following dependencies are missing: base <4.8
   hspec-expectations = overrideCabal super.hspec-expectations (drv: {
-    patchPhase = "sed -i -e 's|base < 4.8|base|' hspec-expectations.cabal";
+    postPatch = "sed -i -e 's|base < 4.8|base|' hspec-expectations.cabal";
   });
   utf8-string = overrideCabal super.utf8-string (drv: {
-    patchPhase = "sed -i -e 's|base >= 3 && < 4.8|base|' utf8-string.cabal";
+    postPatch = "sed -i -e 's|base >= 3 && < 4.8|base|' utf8-string.cabal";
   });
   pointfree = doJailbreak super.pointfree;
 
@@ -178,15 +178,6 @@ self: super: {
             in addBuildDepends jsaddle' [ self.glib self.gtk3 self.webkitgtk3
                                           self.webkitgtk3-javascriptcore ];
 
-  # contacted maintainer by e-mail
-  cmdlib = markBrokenVersion "0.3.5" super.cmdlib;
-  darcs-fastconvert = dontDistribute super.darcs-fastconvert;
-  ivory-backend-c = dontDistribute super.ivory-backend-c;
-  ivory-bitdata = dontDistribute super.ivory-bitdata;
-  ivory-examples = dontDistribute super.ivory-examples;
-  ivory-hw = dontDistribute super.ivory-hw;
-  laborantin-hs = dontDistribute super.laborantin-hs;
-
   # https://github.com/cartazio/arithmoi/issues/1
   arithmoi = markBroken super.arithmoi;
   NTRU = dontDistribute super.NTRU;
@@ -281,4 +272,7 @@ self: super: {
   # https://github.com/haskell/haddock/issues/427
   haddock = dontCheck super.haddock;
 
+  # The tests in vty-ui do not build, but vty-ui itself builds.
+  vty-ui = enableCabalFlag super.vty-ui "no-tests";
+
 }