From 2b1fea120c11dfcfd1e2b27ae0278fc5938c1041 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sun, 18 Sep 2016 12:13:10 +0200 Subject: [PATCH] idris: disable failing test suite --- pkgs/development/haskell-modules/configuration-common.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index a3bfa87f6352..6f48eabe6741 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