summary refs log tree commit diff
path: root/pkgs/build-support/cabal
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2013-03-23 17:00:11 +0100
committerPeter Simons <simons@cryp.to>2013-03-23 18:44:44 +0100
commit32fb6ed5e392f3a7ad23578cfea75a78ae0ee4c9 (patch)
treee7769d03f534d0f7d2a570469a71454f086be6a7 /pkgs/build-support/cabal
parent6617f5ca9e92f307c468018a7d05c8c080c5441e (diff)
downloadnixpkgs-32fb6ed5e392f3a7ad23578cfea75a78ae0ee4c9.tar
nixpkgs-32fb6ed5e392f3a7ad23578cfea75a78ae0ee4c9.tar.gz
nixpkgs-32fb6ed5e392f3a7ad23578cfea75a78ae0ee4c9.tar.bz2
nixpkgs-32fb6ed5e392f3a7ad23578cfea75a78ae0ee4c9.tar.lz
nixpkgs-32fb6ed5e392f3a7ad23578cfea75a78ae0ee4c9.tar.xz
nixpkgs-32fb6ed5e392f3a7ad23578cfea75a78ae0ee4c9.tar.zst
nixpkgs-32fb6ed5e392f3a7ad23578cfea75a78ae0ee4c9.zip
pkgs/build-support/cabal: disable doCheck by default on GHC 7.0.x platforms
Trying to run the unit tests with GHC 7.0.4 causes so many builds to
fail that it's probably not worth-while.
Diffstat (limited to 'pkgs/build-support/cabal')
-rw-r--r--pkgs/build-support/cabal/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/build-support/cabal/default.nix b/pkgs/build-support/cabal/default.nix
index c1b8d6d5fea..d4c823f4a84 100644
--- a/pkgs/build-support/cabal/default.nix
+++ b/pkgs/build-support/cabal/default.nix
@@ -92,7 +92,7 @@
 
             # pass the '--enable-tests' flag to cabal in the configure stage
             # and run any regression test suites the package might have
-            doCheck = stdenv.lib.versionOlder "7" ghc.ghcVersion;
+            doCheck = stdenv.lib.versionOlder "7.4" ghc.ghcVersion;
 
             extraConfigureFlags = [
               (stdenv.lib.enableFeature enableLibraryProfiling "library-profiling")