From d1d0c73dfb4eeabbca80d9258b57a40bf59577b4 Mon Sep 17 00:00:00 2001 From: sternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org> Date: Thu, 6 May 2021 20:06:05 +0200 Subject: [PATCH] haskellPackages.FractalArt: add AppKit framework to dependencies --- pkgs/development/haskell-modules/configuration-nix.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/haskell-modules/configuration-nix.nix b/pkgs/development/haskell-modules/configuration-nix.nix index 74e4f9857d5..501d1572737 100644 --- a/pkgs/development/haskell-modules/configuration-nix.nix +++ b/pkgs/development/haskell-modules/configuration-nix.nix @@ -861,6 +861,7 @@ self: super: builtins.intersectAttrs super { FractalArt = overrideCabal super.FractalArt (drv: { librarySystemDepends = pkgs.lib.optionals pkgs.stdenv.hostPlatform.isDarwin [ pkgs.darwin.libobjc + pkgs.darwin.apple_sdk.frameworks.AppKit ] ++ (drv.librarySystemDepends or []); });