btrbk: add mainProgram (#356350)
[NixPkgs.git] / pkgs / by-name / wi / windowchef / package.nix
blobbf1a7c305dcd15ae201e17212dcdaf0e9e18ec21
1 { lib, stdenv, fetchFromGitHub, libxcb, libXrandr
2 , xcbutil, xcbutilkeysyms, xcbutilwm, xcbproto
3 }:
5 stdenv.mkDerivation rec {
6   pname = "windowchef";
7   version = "0.5.2";
9   src = fetchFromGitHub {
10     owner  = "tudurom";
11     repo   = "windowchef";
12     rev    = "v${version}";
13     sha256 = "1m4vly7w2f28lrj26rhh3x9xsp3d97m5cxj91fafgh5rds4ygyhp";
14   };
16   buildInputs = [ libxcb libXrandr xcbutil xcbutilkeysyms xcbutilwm xcbproto];
18   makeFlags = [ "PREFIX=$(out)" ];
20   meta = with lib; {
21     description = "Stacking window manager that cooks windows with orders from the Waitron";
22     homepage = "https://github.com/tudurom/windowchef";
23     maintainers = with maintainers; [ bhougland ];
24     license = licenses.isc;
25     platforms = platforms.linux;
26   };