about summary refs log tree commit diff
path: root/pkgs/applications/window-managers/2bwm
diff options
context:
space:
mode:
authorsternenseemann <git@lukasepple.de>2017-03-24 15:25:31 +0100
committerFranz Pletz <fpletz@fnordicwalking.de>2017-03-30 19:21:27 +0200
commitfd3a99633bbbb7fb314dd532d9f154340547f821 (patch)
treedcd1c328628c4feed6e63b82ddcc50f37a11595a /pkgs/applications/window-managers/2bwm
parentf9a10601990de8eada3470eda50f7cff8277bd0e (diff)
2bwm: init at 0.2
Diffstat (limited to 'pkgs/applications/window-managers/2bwm')
-rw-r--r--pkgs/applications/window-managers/2bwm/default.nix30
1 files changed, 30 insertions, 0 deletions
diff --git a/pkgs/applications/window-managers/2bwm/default.nix b/pkgs/applications/window-managers/2bwm/default.nix
new file mode 100644
index 0000000000000..50c342269c71c
--- /dev/null
+++ b/pkgs/applications/window-managers/2bwm/default.nix
@@ -0,0 +1,30 @@
+{ stdenv, fetchFromGitHub, patches
+, libxcb, xcbutilkeysyms, xcbutilwm
+, libX11, xcbutil, xcbutilxrm }:
+
+stdenv.mkDerivation rec {
+  version = "0.2";
+  name = "2bwm-${version}";
+
+  src = fetchFromGitHub {
+    owner  = "venam";
+    repo   = "2bwm";
+    rev    = "v${version}";
+    sha256 = "1la1ixpm5knsj2gvdcmxzj1jfbzxvhmgzps4f5kbvx5047xc6ici";
+  };
+
+  # Allow users set their own list of patches
+  inherit patches;
+
+  buildInputs = [ libxcb xcbutilkeysyms xcbutilwm libX11 xcbutil xcbutilxrm ];
+
+  installPhase = "make install DESTDIR=$out PREFIX=\"\"";
+
+  meta = with stdenv.lib; {
+    homepage = "https://github.com/venam/2bwm";
+    description = "A fast floating WM written over the XCB library and derived from mcwm";
+    license = licenses.mit;
+    maintainers =  [ maintainers.sternenseemann ];
+    platforms = platforms.unix;
+  };
+}