about summary refs log tree commit diff
path: root/pkgs/development/haskell-modules
diff options
context:
space:
mode:
authorDomen Kožar <domen@dev.si>2019-10-03 10:08:42 +0200
committerDomen Kožar <domen@dev.si>2019-10-03 10:08:42 +0200
commit660db64a261bc583c909e82a0c553c4b1e07b655 (patch)
tree0b7f8787d6aff202b840313272347bfdfe43bca7 /pkgs/development/haskell-modules
parentea5d2a0efa6938aa586688918f3c72d377855007 (diff)
downloadnixlib-660db64a261bc583c909e82a0c553c4b1e07b655.tar
nixlib-660db64a261bc583c909e82a0c553c4b1e07b655.tar.gz
nixlib-660db64a261bc583c909e82a0c553c4b1e07b655.tar.bz2
nixlib-660db64a261bc583c909e82a0c553c4b1e07b655.tar.lz
nixlib-660db64a261bc583c909e82a0c553c4b1e07b655.tar.xz
nixlib-660db64a261bc583c909e82a0c553c4b1e07b655.tar.zst
nixlib-660db64a261bc583c909e82a0c553c4b1e07b655.zip
cachix: fix build on darwin
Diffstat (limited to 'pkgs/development/haskell-modules')
-rw-r--r--pkgs/development/haskell-modules/configuration-nix.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/haskell-modules/configuration-nix.nix b/pkgs/development/haskell-modules/configuration-nix.nix
index f8a49558c09e..17f3b2a258c4 100644
--- a/pkgs/development/haskell-modules/configuration-nix.nix
+++ b/pkgs/development/haskell-modules/configuration-nix.nix
@@ -94,7 +94,8 @@ self: super: builtins.intersectAttrs super {
   # Won't find it's header files without help.
   sfml-audio = appendConfigureFlag super.sfml-audio "--extra-include-dirs=${pkgs.openal}/include/AL";
 
-  cachix = enableSeparateBinOutput super.cachix;
+  # profiling is disabled to allow C++/C mess to work, which is fixed in GHC 8.8
+  cachix = disableLibraryProfiling (enableSeparateBinOutput super.cachix);
 
   niv = enableSeparateBinOutput super.niv;