2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, libxcb, libXrandr
|
2020-04-13 18:52:52 +00:00
|
|
|
, xcbutil, xcbutilkeysyms, xcbutilwm, xcbproto
|
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "windowchef";
|
2020-11-12 10:48:46 +00:00
|
|
|
version = "0.5.2";
|
2020-04-13 18:52:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "tudurom";
|
|
|
|
repo = "windowchef";
|
|
|
|
rev = "v${version}";
|
2020-11-12 10:48:46 +00:00
|
|
|
sha256 = "1m4vly7w2f28lrj26rhh3x9xsp3d97m5cxj91fafgh5rds4ygyhp";
|
2020-04-13 18:52:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ libxcb libXrandr xcbutil xcbutilkeysyms xcbutilwm xcbproto];
|
|
|
|
|
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-13 18:52:52 +00:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|