From 0781c31545e19b154dcf38ce1ae962340d04a70b Mon Sep 17 00:00:00 2001 From: sternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org> Date: Thu, 6 May 2021 19:35:36 +0200 Subject: [PATCH] haskellPackages.arbtt: add missing frameworks for darwin --- pkgs/development/haskell-modules/configuration-nix.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-nix.nix b/pkgs/development/haskell-modules/configuration-nix.nix index e7c8b74afea..74e4f9857d5 100644 --- a/pkgs/development/haskell-modules/configuration-nix.nix +++ b/pkgs/development/haskell-modules/configuration-nix.nix @@ -867,6 +867,8 @@ self: super: builtins.intersectAttrs super { arbtt = overrideCabal super.arbtt (drv: { librarySystemDepends = pkgs.lib.optionals pkgs.stdenv.hostPlatform.isDarwin [ pkgs.darwin.apple_sdk.frameworks.Foundation + pkgs.darwin.apple_sdk.frameworks.Carbon + pkgs.darwin.apple_sdk.frameworks.IOKit ] ++ (drv.librarySystemDepends or []); }); }