nixpkgs/pkgs/applications/window-managers/bspwm/default.nix

28 lines
753 B
Nix
Raw Normal View History

2017-07-26 16:21:27 +00:00
{ stdenv, fetchFromGitHub, libxcb, libXinerama
, xcbutil, xcbutilkeysyms, xcbutilwm
2017-07-26 16:21:27 +00:00
}:
2014-08-09 21:31:05 +00:00
stdenv.mkDerivation rec {
name = "bspwm-${version}";
2018-04-27 17:04:31 +00:00
version = "0.9.5";
2017-07-26 16:21:27 +00:00
src = fetchFromGitHub {
owner = "baskerville";
repo = "bspwm";
rev = version;
2018-04-27 17:04:31 +00:00
sha256 = "09h3g1rxxjyw861mk32lj774nmwkx8cwxq4wfgmf4dpbizymvhhr";
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
2017-07-26 16:21:27 +00:00
meta = with stdenv.lib; {
2014-08-09 21:31:05 +00:00
description = "A tiling window manager based on binary space partitioning";
homepage = https://github.com/baskerville/bspwm;
2018-04-27 20:54:07 +00:00
maintainers = with maintainers; [ meisternu epitrochoid rvolosatovs ];
2017-07-26 16:21:27 +00:00
license = licenses.bsd2;
platforms = platforms.linux;
2014-08-09 21:31:05 +00:00
};
}