biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / window-managers / 2bwm / default.nix
blob09f3a0ebce62888be5ee032043aa1b4253923586
1 { lib, stdenv, fetchFromGitHub, patches
2 , libxcb, xcbutilkeysyms, xcbutilwm
3 , libX11, xcbutil, xcbutilxrm }:
5 stdenv.mkDerivation rec {
6   version = "0.3";
7   pname = "2bwm";
9   src = fetchFromGitHub {
10     owner  = "venam";
11     repo   = "2bwm";
12     rev    = "v${version}";
13     sha256 = "1xwib612ahv4rg9yl5injck89dlpyp5475xqgag0ydfd0r4sfld7";
14   };
16   # Allow users set their own list of patches
17   inherit patches;
19   buildInputs = [ libxcb xcbutilkeysyms xcbutilwm libX11 xcbutil xcbutilxrm ];
21   installPhase = "make install DESTDIR=$out PREFIX=\"\"";
23   meta = with lib; {
24     homepage = "https://github.com/venam/2bwm";
25     description = "Fast floating WM written over the XCB library and derived from mcwm";
26     license = licenses.mit;
27     maintainers =  [ maintainers.sternenseemann ];
28     platforms = platforms.unix;
29   };