mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
kwm: init at 4.0.4
This commit is contained in:
parent
034d39b244
commit
0f91cdc45f
34
pkgs/os-specific/darwin/kwm/default.nix
Normal file
34
pkgs/os-specific/darwin/kwm/default.nix
Normal file
@ -0,0 +1,34 @@
|
||||
{ stdenv, fetchzip }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "kwm-${version}";
|
||||
version = "4.0.4";
|
||||
|
||||
src = fetchzip {
|
||||
stripRoot = false;
|
||||
url = "https://github.com/koekeishiya/kwm/releases/download/v${version}/Kwm-${version}.zip";
|
||||
sha256 = "07rf4ichq511w8qmvd6s602s7xcyjhjp73d5c615sj82cxvgirwc";
|
||||
};
|
||||
|
||||
# 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 stdenv.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 ];
|
||||
license = licenses.mit;
|
||||
};
|
||||
}
|
26
pkgs/os-specific/darwin/kwm/org.nixos.kwm.plist
Normal file
26
pkgs/os-specific/darwin/kwm/org.nixos.kwm.plist
Normal file
@ -0,0 +1,26 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>Label</key>
|
||||
<string>org.nixos.kwm</string>
|
||||
<key>ProgramArguments</key>
|
||||
<array>
|
||||
<string>@out@/kwm</string>
|
||||
</array>
|
||||
<key>KeepAlive</key>
|
||||
<true/>
|
||||
<key>Sockets</key>
|
||||
<dict>
|
||||
<key>Listeners</key>
|
||||
<dict>
|
||||
<key>SockServiceName</key>
|
||||
<string>3020</string>
|
||||
<key>SockType</key>
|
||||
<string>dgram</string>
|
||||
<key>SockFamily</key>
|
||||
<string>IPv4</string>
|
||||
</dict>
|
||||
</dict>
|
||||
</dict>
|
||||
</plist>
|
@ -524,6 +524,8 @@ in
|
||||
|
||||
oracle-instantclient = callPackage ../development/libraries/oracle-instantclient { };
|
||||
|
||||
kwm = callPackage ../os-specific/darwin/kwm { };
|
||||
|
||||
reattach-to-user-namespace = callPackage ../os-specific/darwin/reattach-to-user-namespace {};
|
||||
|
||||
install_name_tool = callPackage ../os-specific/darwin/install_name_tool { };
|
||||
|
Loading…
Reference in New Issue
Block a user