Merge pull request #85174 from bhougland18/windowchef
windowchef: init at 0.5.0
This commit is contained in:
commit
1e66d74f0b
27
pkgs/applications/window-managers/windowchef/default.nix
Normal file
27
pkgs/applications/window-managers/windowchef/default.nix
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
{ stdenv, fetchFromGitHub, libxcb, libXrandr
|
||||||
|
, xcbutil, xcbutilkeysyms, xcbutilwm, xcbproto
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "windowchef";
|
||||||
|
version = "0.5.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "tudurom";
|
||||||
|
repo = "windowchef";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "02fvb8fxnkpzb0vpbsl6rf7ssdrvw6mlm43qvl2sxq7zb88zdw96";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ libxcb libXrandr xcbutil xcbutilkeysyms xcbutilwm xcbproto];
|
||||||
|
|
||||||
|
makeFlags = [ "PREFIX=$(out)" ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "A stacking window manager that cooks windows with orders from the Waitron";
|
||||||
|
homepage = "https://github.com/tudurom/windowchef";
|
||||||
|
maintainers = with maintainers; [ bhougland ];
|
||||||
|
license = licenses.isc;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
@ -20977,6 +20977,8 @@ in
|
|||||||
|
|
||||||
i3-wk-switch = callPackage ../applications/window-managers/i3/wk-switch.nix { };
|
i3-wk-switch = callPackage ../applications/window-managers/i3/wk-switch.nix { };
|
||||||
|
|
||||||
|
windowchef = callPackage ../applications/window-managers/windowchef/default.nix { };
|
||||||
|
|
||||||
wmfocus = callPackage ../applications/window-managers/i3/wmfocus.nix { };
|
wmfocus = callPackage ../applications/window-managers/i3/wmfocus.nix { };
|
||||||
|
|
||||||
wmfs = callPackage ../applications/window-managers/wmfs/default.nix { };
|
wmfs = callPackage ../applications/window-managers/wmfs/default.nix { };
|
||||||
|
Loading…
Reference in New Issue
Block a user