about summary refs log tree commit diff
path: root/pkgs/applications/window-managers/yabar/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/window-managers/yabar/default.nix')
-rw-r--r--pkgs/applications/window-managers/yabar/default.nix37
1 files changed, 37 insertions, 0 deletions
diff --git a/pkgs/applications/window-managers/yabar/default.nix b/pkgs/applications/window-managers/yabar/default.nix
new file mode 100644
index 000000000000..2f4a7f0e06c5
--- /dev/null
+++ b/pkgs/applications/window-managers/yabar/default.nix
@@ -0,0 +1,37 @@
+{ stdenv, fetchFromGitHub, cairo, gdk_pixbuf, libconfig, pango, pkgconfig, xcbutilwm }:
+
+stdenv.mkDerivation rec {
+  name    = "yabar-${version}";
+  version = "0.4.0";
+
+  src = fetchFromGitHub {
+    owner  = "geommer";
+    repo   = "yabar";
+    rev    = "746387f0112f9b7aa2e2e27b3d69cb2892d8c63b";
+    sha256 = "1nw9dar1caqln5fr0dqk7dg6naazbpfwwzxwlkxz42shsc3w30a6";
+  };
+
+  buildInputs = [ cairo gdk_pixbuf libconfig pango pkgconfig xcbutilwm ];
+
+  postPatch = ''
+    substituteInPlace ./Makefile --replace "\$(shell git describe)" "${version}"
+  '';
+
+  buildPhase = ''
+    make DESTDIR=$out PREFIX=/
+  '';
+
+  installPhase = ''
+    make DESTDIR=$out PREFIX=/ install
+    mkdir -p $out/share/yabar/examples
+    cp -v examples/*.config $out/share/yabar/examples
+  '';
+
+  meta = with stdenv.lib; {
+    description = "A modern and lightweight status bar for X window managers";
+    homepage    = "https://github.com/geommer/yabar";
+    maintainers = [ maintainers.hiberno ];
+    license     = licenses.mit;
+    platforms   = platforms.linux;
+  };
+}