32 lines
859 B
Nix
32 lines
859 B
Nix
{ stdenv, lib, fetchurl, xorg, pixman, pkgconfig, AppKit, Xplugin }:
|
|
|
|
let version = "1.3.1";
|
|
in stdenv.mkDerivation {
|
|
name = "quartz-wm-${version}";
|
|
src = fetchurl {
|
|
url = "http://xquartz-dl.macosforge.org/src/quartz-wm-${version}.tar.xz";
|
|
sha256 = "1j8zd3p7rhay1s3sxq6anw78k5s59mx44xpqla2ianl62346a5g9";
|
|
};
|
|
patches = [
|
|
./no_title_crash.patch
|
|
./extern-patch.patch
|
|
];
|
|
buildInputs = [
|
|
xorg.libXinerama
|
|
xorg.libAppleWM
|
|
xorg.applewmproto
|
|
xorg.libXrandr
|
|
xorg.libXext
|
|
pixman
|
|
pkgconfig
|
|
AppKit Xplugin
|
|
];
|
|
NIX_CFLAGS_COMPILE = "-F/System/Library/Frameworks -I/usr/include";
|
|
NIX_LDFLAGS = stdenv.lib.optional stdenv.isDarwin
|
|
"/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation";
|
|
meta = with lib; {
|
|
license = licenses.apsl20;
|
|
platforms = platforms.darwin;
|
|
};
|
|
}
|