summary refs log tree commit diff
path: root/pkgs/development/haskell-modules
diff options
context:
space:
mode:
authorsternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2021-06-22 16:00:19 +0200
committersternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2021-06-22 16:00:19 +0200
commitd7d3eace879d3efc4578befa0fba146f9953b114 (patch)
tree9bab87955d04c48be6a8a303e472ae6f1396b4ea /pkgs/development/haskell-modules
parent25556077a5808b13acd861f5a53b8c9b85c6e618 (diff)
downloadnixpkgs-d7d3eace879d3efc4578befa0fba146f9953b114.tar
nixpkgs-d7d3eace879d3efc4578befa0fba146f9953b114.tar.gz
nixpkgs-d7d3eace879d3efc4578befa0fba146f9953b114.tar.bz2
nixpkgs-d7d3eace879d3efc4578befa0fba146f9953b114.tar.lz
nixpkgs-d7d3eace879d3efc4578befa0fba146f9953b114.tar.xz
nixpkgs-d7d3eace879d3efc4578befa0fba146f9953b114.tar.zst
nixpkgs-d7d3eace879d3efc4578befa0fba146f9953b114.zip
haskellPackages.tmp-postgres: disable tests on darwin
The tests use pgrep which is not packaged for darwin yet as we are
lacking some private / non open source headers for it to compile.

May be resolvable in the future.
Diffstat (limited to 'pkgs/development/haskell-modules')
-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 47a5cf4e9bc..0c4b46360ba 100644
--- a/pkgs/development/haskell-modules/configuration-darwin.nix
+++ b/pkgs/development/haskell-modules/configuration-darwin.nix
@@ -174,4 +174,7 @@ self: super: {
   hls-fourmolu-plugin = dontCheck super.hls-fourmolu-plugin;
   hls-module-name-plugin = dontCheck super.hls-module-name-plugin;
 
+  # We are lacking pure pgrep at the moment for tests to work
+  tmp-postgres = dontCheck super.tmp-postgres;
+
 }