about summary refs log tree commit diff
path: root/pkgs/servers/x11/quartz-wm/default.nix
blob: 45e4df2bb8b933564bbca4a0ef868126f92df1b4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ 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;
  };
}