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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
720 B
Nix
Raw Normal View History

{ lib, 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 {
pname = "bspwm";
2020-08-02 23:38:09 +00:00
version = "0.9.10";
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
meta = with 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";
maintainers = with maintainers; [ meisternu ];
2017-07-26 16:21:27 +00:00
license = licenses.bsd2;
platforms = platforms.linux;
2014-08-09 21:31:05 +00:00
};
}