Files
nixpkgs/pkgs/by-name/kw/kwm/package.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

40 lines
1.0 KiB
Nix

{
lib,
stdenv,
fetchzip,
}:
stdenv.mkDerivation rec {
pname = "kwm";
version = "4.0.5";
src = fetchzip {
stripRoot = false;
url = "https://github.com/koekeishiya/kwm/releases/download/v${version}/Kwm-${version}.zip";
sha256 = "1ld1vblg3hmc6lpb8p2ljvisbkijjkijf4y87z5y1ia4k8pk7mxb";
};
# TODO: Build this properly once we have swiftc.
dontBuild = true;
installPhase = ''
mkdir -p $out/bin
cp kwmc $out/bin/kwmc
cp kwm overlaylib.dylib $out
mkdir -p $out/Library/LaunchDaemons
cp ${./org.nixos.kwm.plist} $out/Library/LaunchDaemons/org.nixos.kwm.plist
substituteInPlace $out/Library/LaunchDaemons/org.nixos.kwm.plist --subst-var out
'';
meta = with lib; {
description = "Tiling window manager with focus follows mouse for OSX";
homepage = "https://github.com/koekeishiya/kwm";
downloadPage = "https://github.com/koekeishiya/kwm/releases";
platforms = platforms.darwin;
maintainers = with maintainers; [ lnl7 ];
mainProgram = "kwmc";
license = licenses.mit;
};
}