Files

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

48 lines
868 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
stdenv,
fetchgit,
autoreconfHook,
pixman,
pkg-config,
util-macros,
libXinerama,
libAppleWM,
xorgproto,
libXrandr,
libXext,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "quartz-wm";
version = "1.3.2";
src = fetchgit {
url = "https://gitlab.freedesktop.org/xorg/app/quartz-wm.git";
tag = "quartz-wm-${finalAttrs.version}";
hash = "sha256-1+KZNeR4Gq2uWBHTN53PTITHuly1Z4buR+grzdVNwhs=";
};
configureFlags = [ "--enable-xplugin-dock-support" ];
nativeBuildInputs = [
autoreconfHook
pkg-config
util-macros
];
buildInputs = [
libXinerama
libAppleWM
xorgproto
libXrandr
libXext
pixman
];
meta = {
license = lib.licenses.apple-psl20;
platforms = lib.platforms.darwin;
maintainers = with lib.maintainers; [ matthewbauer ];
mainProgram = "quartz-wm";
};
})