python313Packages.kivy: fix build (#372247)
[NixPkgs.git] / pkgs / applications / window-managers / 2bwm / default.nix
blob4ed3054a42e7778ffbdce159c2d0df99d2b2d31f
2   lib,
3   stdenv,
4   fetchFromGitHub,
5   patches,
6   libxcb,
7   xcbutilkeysyms,
8   xcbutilwm,
9   libX11,
10   xcbutil,
11   xcbutilxrm,
14 stdenv.mkDerivation rec {
15   version = "0.3";
16   pname = "2bwm";
18   src = fetchFromGitHub {
19     owner = "venam";
20     repo = "2bwm";
21     rev = "v${version}";
22     sha256 = "1xwib612ahv4rg9yl5injck89dlpyp5475xqgag0ydfd0r4sfld7";
23   };
25   # Allow users set their own list of patches
26   inherit patches;
28   buildInputs = [
29     libxcb
30     xcbutilkeysyms
31     xcbutilwm
32     libX11
33     xcbutil
34     xcbutilxrm
35   ];
37   installPhase = "make install DESTDIR=$out PREFIX=\"\"";
39   meta = with lib; {
40     homepage = "https://github.com/venam/2bwm";
41     description = "Fast floating WM written over the XCB library and derived from mcwm";
42     license = licenses.mit;
43     maintainers = [ maintainers.sternenseemann ];
44     platforms = platforms.unix;
45   };