nixpkgs/pkgs/by-name/kw/kwm/package.nix
aleksana 571c71e6f7 treewide: migrate packages to pkgs/by-name, take 1
We are migrating packages that meet below requirements:

1. using `callPackage`
2. called path is a directory
3. overriding set is empty (`{ }`)
4. not containing path expressions other than relative path (to
makenixpkgs-vet happy)
5. not referenced by nix files outside of the directory, other
than`pkgs/top-level/all-packages.nix`
6. not referencing nix files outside of the directory
7. not referencing `default.nix` (since it's changed to `package.nix`)
8. `outPath` doesn't change after migration

The tool is here: https://github.com/Aleksanaa/by-name-migrate.
2024-11-09 20:04:51 +08:00

36 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;
};
}