biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / applications / window-managers / windowchef / default.nix
blobf5a5e6dbd5c94a840d424456da220c21ea065f1f
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 = "A 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   };