nixpkgs/pkgs/servers/x11/quartz-wm/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
821 B
Nix
Raw Permalink Normal View History

{ lib, stdenv, fetchurl, xorg, pixman, pkg-config, AppKit, Foundation, Xplugin }:
2014-08-13 00:40:57 +00:00
let version = "1.3.1";
in stdenv.mkDerivation {
2019-08-13 21:52:01 +00:00
pname = "quartz-wm";
inherit version;
2014-08-13 00:40:57 +00: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
];
configureFlags = [ "--enable-xplugin-dock-support" ];
nativeBuildInputs = [ pkg-config ];
2014-08-13 00:40:57 +00:00
buildInputs = [
xorg.libXinerama
xorg.libAppleWM
xorg.xorgproto
2014-08-13 00:40:57 +00:00
xorg.libXrandr
xorg.libXext
pixman
AppKit Xplugin Foundation
2014-08-13 00:40:57 +00:00
];
meta = with lib; {
license = licenses.apple-psl20;
2014-08-13 00:40:57 +00:00
platforms = platforms.darwin;
2017-11-13 06:33:45 +00:00
maintainers = with maintainers; [ matthewbauer ];
2014-08-13 00:40:57 +00:00
};
}