2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, libxcb, libXinerama
|
2018-07-21 00:44:44 +00:00
|
|
|
, xcbutil, xcbutilkeysyms, xcbutilwm
|
2017-07-26 16:21:27 +00:00
|
|
|
}:
|
2014-08-09 21:31:05 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "bspwm";
|
2020-08-02 23:38:09 +00:00
|
|
|
version = "0.9.10";
|
2016-04-15 15:23:08 +00:00
|
|
|
|
2017-07-26 16:21:27 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "baskerville";
|
|
|
|
repo = "bspwm";
|
|
|
|
rev = version;
|
2020-08-02 23:38:09 +00:00
|
|
|
sha256 = "0qlv7b4c2mmjfd65y100d11x8iqyg5f6lfiws3cgmpjidhdygnxc";
|
2014-08-09 21:31:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ libxcb libXinerama xcbutil xcbutilkeysyms xcbutilwm ];
|
|
|
|
|
2017-07-28 03:55:35 +00:00
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
2014-08-09 21:31:05 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2014-08-09 21:31:05 +00:00
|
|
|
description = "A tiling window manager based on binary space partitioning";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/baskerville/bspwm";
|
2021-06-29 19:20:32 +00:00
|
|
|
maintainers = with maintainers; [ meisternu epitrochoid ];
|
2017-07-26 16:21:27 +00:00
|
|
|
license = licenses.bsd2;
|
|
|
|
platforms = platforms.linux;
|
2014-08-09 21:31:05 +00:00
|
|
|
};
|
|
|
|
}
|