From ff3c60b338cfecdd6c80db77ac5c28ec1f9adad2 Mon Sep 17 00:00:00 2001 From: Jack Kelly Date: Wed, 30 Jan 2019 19:00:27 +1100 Subject: [PATCH] haskellPackages.posix-pty: dontCheck The test program does not exit gracefully. See https://github.com/merijn/posix-pty/issues/12 --- pkgs/development/haskell-modules/configuration-common.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 74457868da2d..3ff96bf25449 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -358,6 +358,7 @@ self: super: { persistent-redis = dontCheck super.persistent-redis; pipes-extra = dontCheck super.pipes-extra; pipes-websockets = dontCheck super.pipes-websockets; + posix-pty = dontCheck super.posix-pty; # https://github.com/merijn/posix-pty/issues/12 postgresql-binary = dontCheck super.postgresql-binary; # needs a running postgresql server postgresql-simple-migration = dontCheck super.postgresql-simple-migration; process-streaming = dontCheck super.process-streaming;