about summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-darwin.nix
diff options
context:
space:
mode:
authorlukasepple <git@lukasepple.de>2021-08-06 15:12:42 +0200
committerlukasepple <git@lukasepple.de>2021-08-06 15:13:55 +0200
commitcecc6ad4d5b9f7ccb59060b8b2d4321bab88b85d (patch)
treedf5554fea93926a3f082eaeb88aed0bf33cebf17 /pkgs/development/haskell-modules/configuration-darwin.nix
parent5bb192fb96c5d6ece1d034809a624ca08789d97b (diff)
haskellPackages.acid-state: disable tests on darwin
Let upstream deal with the resource exhaustion issue, probably the stress
test is a bit too optimistic for darwin's fd limits or whatever.
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-darwin.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-darwin.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-darwin.nix b/pkgs/development/haskell-modules/configuration-darwin.nix
index 7ecc15fce717a..bc5e6fa8b9f2c 100644
--- a/pkgs/development/haskell-modules/configuration-darwin.nix
+++ b/pkgs/development/haskell-modules/configuration-darwin.nix
@@ -244,4 +244,7 @@ self: super: {
   # https://github.com/typeclasses/dsv/issues/1
   dsv = dontCheck super.dsv;
 
+  # https://github.com/acid-state/acid-state/issues/133
+  acid-state = dontCheck super.acid-state;
+
 }