about summary refs log tree commit diff
diff options
context:
space:
mode:
authorNikolay Amiantov <ab@fmap.me>2017-02-08 17:39:37 +0300
committerNikolay Amiantov <ab@fmap.me>2017-02-08 17:39:55 +0300
commit45368ed49db8c51ea36ab24e5f9cc336286e02ee (patch)
treeff97f73edfcdb2c64e4acda2fb13fc122c6fc46e
parent7db1f727f38cfbdc5cab60cc8d19d4573bd81c22 (diff)
downloadnixlib-45368ed49db8c51ea36ab24e5f9cc336286e02ee.tar
nixlib-45368ed49db8c51ea36ab24e5f9cc336286e02ee.tar.gz
nixlib-45368ed49db8c51ea36ab24e5f9cc336286e02ee.tar.bz2
nixlib-45368ed49db8c51ea36ab24e5f9cc336286e02ee.tar.lz
nixlib-45368ed49db8c51ea36ab24e5f9cc336286e02ee.tar.xz
nixlib-45368ed49db8c51ea36ab24e5f9cc336286e02ee.tar.zst
nixlib-45368ed49db8c51ea36ab24e5f9cc336286e02ee.zip
haskellPackages.typed-process: disable tests
Networking is required for them.
-rw-r--r--pkgs/development/haskell-modules/configuration-nix.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-nix.nix b/pkgs/development/haskell-modules/configuration-nix.nix
index 6768b8bba90e..bd74e0e6e04d 100644
--- a/pkgs/development/haskell-modules/configuration-nix.nix
+++ b/pkgs/development/haskell-modules/configuration-nix.nix
@@ -384,4 +384,7 @@ self: super: builtins.intersectAttrs super {
     librarySystemDepends = old.librarySystemDepends or [] ++ [ pkgs.systemd ];
   });
 
+  # Needs network in tests.
+  typed-process = dontCheck super.typed-process;
+
 }