summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2016-09-18 12:13:10 +0200
committerPeter Simons <simons@cryp.to>2016-09-18 12:14:49 +0200
commit2b1fea120c11dfcfd1e2b27ae0278fc5938c1041 (patch)
treef534c8538ba4a4d066ce191d7af0e7ff03d1ae45
parent806d96b6a3c6036940494a27c7d91b7cf0ea1337 (diff)
downloadnixpkgs-2b1fea120c11dfcfd1e2b27ae0278fc5938c1041.tar
nixpkgs-2b1fea120c11dfcfd1e2b27ae0278fc5938c1041.tar.gz
nixpkgs-2b1fea120c11dfcfd1e2b27ae0278fc5938c1041.tar.bz2
nixpkgs-2b1fea120c11dfcfd1e2b27ae0278fc5938c1041.tar.lz
nixpkgs-2b1fea120c11dfcfd1e2b27ae0278fc5938c1041.tar.xz
nixpkgs-2b1fea120c11dfcfd1e2b27ae0278fc5938c1041.tar.zst
nixpkgs-2b1fea120c11dfcfd1e2b27ae0278fc5938c1041.zip
idris: disable failing test suite
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index a3bfa87f635..6f48eabe674 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -989,6 +989,8 @@ self: super: {
     preBuild = "export LD_LIBRARY_PATH=$PWD/dist/build:$LD_LIBRARY_PATH";
     # https://github.com/idris-lang/Idris-dev/issues/2499
     librarySystemDepends = (drv.librarySystemDepends or []) ++ [pkgs.gmp];
+    # test suite cannot find its own "idris" binary
+    doCheck = false;
   });
 
   # https://github.com/pontarius/pontarius-xmpp/issues/105