Files
nixpkgs/pkgs/servers/x11/quartz-wm/default.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

48 lines
868 B
Nix

{
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";
};
})