summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2013-11-11 13:53:55 +0100
committerPeter Simons <simons@cryp.to>2013-11-11 14:39:59 +0100
commit7aefd575b5388bac12915c78c8a0f2eb0800f71e (patch)
treee1c2d95319bef2a0790bc31f425363757bc07a98 /pkgs/development
parent716318c54db62f2e9b14ff1a988e09e3c9577f24 (diff)
downloadnixpkgs-7aefd575b5388bac12915c78c8a0f2eb0800f71e.tar
nixpkgs-7aefd575b5388bac12915c78c8a0f2eb0800f71e.tar.gz
nixpkgs-7aefd575b5388bac12915c78c8a0f2eb0800f71e.tar.bz2
nixpkgs-7aefd575b5388bac12915c78c8a0f2eb0800f71e.tar.lz
nixpkgs-7aefd575b5388bac12915c78c8a0f2eb0800f71e.tar.xz
nixpkgs-7aefd575b5388bac12915c78c8a0f2eb0800f71e.tar.zst
nixpkgs-7aefd575b5388bac12915c78c8a0f2eb0800f71e.zip
haskell-yesod-static: disable the yesod-static test suite
It produces a strange error:

  Running 1 test suites...
  Test suite tests: RUNNING...

  /nix/store/gwm3821513h0jwcgxr73r3ay90shaq7r-haskell-base64-bytestring-ghc7.6.3-1.0.0.1/bin/../lib/ghc-7.6.3/package.conf.d/base64-bytestring-1.0.0.1.installedconf:1:19272:
      Not in scope: `main'
      Perhaps you meant `min' (imported from Prelude)
  ...

I'm not sure what this means.
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/libraries/haskell/yesod-static/default.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/development/libraries/haskell/yesod-static/default.nix b/pkgs/development/libraries/haskell/yesod-static/default.nix
index 6942cb466c5..f9193ee971d 100644
--- a/pkgs/development/libraries/haskell/yesod-static/default.nix
+++ b/pkgs/development/libraries/haskell/yesod-static/default.nix
@@ -24,6 +24,7 @@ cabal.mkDerivation (self: {
     systemFilepath text transformers unixCompat unorderedContainers wai
     waiAppStatic waiTest yesodCore yesodTest
   ];
+  doCheck = false;
   meta = {
     homepage = "http://www.yesodweb.com/";
     description = "Static file serving subsite for Yesod Web Framework";