nixpkgs/pkgs/applications/window-managers/windowchef/default.nix
2020-11-23 20:39:47 +01:00

28 lines
762 B
Nix

{ stdenv, fetchFromGitHub, libxcb, libXrandr
, xcbutil, xcbutilkeysyms, xcbutilwm, xcbproto
}:
stdenv.mkDerivation rec {
pname = "windowchef";
version = "0.5.2";
src = fetchFromGitHub {
owner = "tudurom";
repo = "windowchef";
rev = "v${version}";
sha256 = "1m4vly7w2f28lrj26rhh3x9xsp3d97m5cxj91fafgh5rds4ygyhp";
};
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;
};
}