2021-01-18 22:50:56 -08:00
|
|
|
{ lib, stdenv, fetchurl, xorg, pixman, pkg-config, AppKit, Foundation, Xplugin }:
|
2014-08-12 17:40:57 -07:00
|
|
|
|
|
|
|
let version = "1.3.1";
|
|
|
|
in stdenv.mkDerivation {
|
2019-08-13 14:52:01 -07:00
|
|
|
pname = "quartz-wm";
|
|
|
|
inherit version;
|
2014-08-12 17:40:57 -07:00
|
|
|
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
|
2018-12-30 19:40:47 -08:00
|
|
|
xorg.xorgproto
|
2014-08-12 17:40:57 -07:00
|
|
|
xorg.libXrandr
|
|
|
|
xorg.libXext
|
|
|
|
pixman
|
2021-01-18 22:50:56 -08:00
|
|
|
pkg-config
|
2018-11-06 09:48:14 -08:00
|
|
|
AppKit Xplugin Foundation
|
2014-08-12 17:40:57 -07:00
|
|
|
];
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2014-08-12 17:40:57 -07:00
|
|
|
license = licenses.apsl20;
|
|
|
|
platforms = platforms.darwin;
|
2017-11-12 22:33:45 -08:00
|
|
|
maintainers = with maintainers; [ matthewbauer ];
|
2014-08-12 17:40:57 -07:00
|
|
|
};
|
|
|
|
}
|