From d7d3eace879d3efc4578befa0fba146f9953b114 Mon Sep 17 00:00:00 2001 From: sternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org> Date: Tue, 22 Jun 2021 16:00:19 +0200 Subject: [PATCH] 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. --- pkgs/development/haskell-modules/configuration-darwin.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-darwin.nix b/pkgs/development/haskell-modules/configuration-darwin.nix index 47a5cf4e9bc1..0c4b46360ba7 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; + }