Merge pull request #31590 from matthewbauer/quartz-wm

quartz-wm: fix building

authored by Daiderd Jordan and committed by GitHub 956272b1 49b0760b

+3 -5
+3 -5
pkgs/servers/x11/quartz-wm/default.nix
··· 1 - { stdenv, lib, fetchurl, xorg, pixman, pkgconfig, AppKit, Xplugin }: 1 + { stdenv, lib, fetchurl, xorg, pixman, pkgconfig, AppKit, Xplugin, darwin }: 2 2 3 3 let version = "1.3.1"; 4 4 in stdenv.mkDerivation { ··· 19 19 xorg.libXext 20 20 pixman 21 21 pkgconfig 22 - AppKit Xplugin 22 + AppKit Xplugin darwin.apple_sdk.frameworks.Foundation 23 23 ]; 24 - NIX_CFLAGS_COMPILE = "-F/System/Library/Frameworks -I/usr/include"; 25 - NIX_LDFLAGS = stdenv.lib.optional stdenv.isDarwin 26 - "/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation"; 27 24 meta = with lib; { 28 25 license = licenses.apsl20; 29 26 platforms = platforms.darwin; 27 + maintainers = with maintainers; [ matthewbauer ]; 30 28 }; 31 29 }