about summary refs log tree commit diff
path: root/pkgs/applications/window-managers
diff options
context:
space:
mode:
authorTobias Happ <Gerschtli@users.noreply.github.com>2018-06-11 00:24:13 +0200
committerxeji <36407913+xeji@users.noreply.github.com>2018-06-11 00:24:13 +0200
commit895e4c2687858b1f9f1cb2b6b7b190245cf97c62 (patch)
treed580580e95b2da1e0743870e55ce7a5a624e85b8 /pkgs/applications/window-managers
parent4d8c0313b893fb079c1e29b850114b0ceca9df9d (diff)
downloadnixlib-895e4c2687858b1f9f1cb2b6b7b190245cf97c62.tar
nixlib-895e4c2687858b1f9f1cb2b6b7b190245cf97c62.tar.gz
nixlib-895e4c2687858b1f9f1cb2b6b7b190245cf97c62.tar.bz2
nixlib-895e4c2687858b1f9f1cb2b6b7b190245cf97c62.tar.lz
nixlib-895e4c2687858b1f9f1cb2b6b7b190245cf97c62.tar.xz
nixlib-895e4c2687858b1f9f1cb2b6b7b190245cf97c62.tar.zst
nixlib-895e4c2687858b1f9f1cb2b6b7b190245cf97c62.zip
dwm-status: init at 0.4.0 (#41726)
Diffstat (limited to 'pkgs/applications/window-managers')
-rw-r--r--pkgs/applications/window-managers/dwm/dwm-status.nix30
1 files changed, 30 insertions, 0 deletions
diff --git a/pkgs/applications/window-managers/dwm/dwm-status.nix b/pkgs/applications/window-managers/dwm/dwm-status.nix
new file mode 100644
index 000000000000..a8d69987e337
--- /dev/null
+++ b/pkgs/applications/window-managers/dwm/dwm-status.nix
@@ -0,0 +1,30 @@
+{ stdenv, rustPlatform, fetchFromGitHub, dbus, gdk_pixbuf, libnotify, pkgconfig }:
+
+rustPlatform.buildRustPackage rec {
+  name = "dwm-status-${version}";
+  version = "0.4.0";
+
+  src = fetchFromGitHub {
+    owner = "Gerschtli";
+    repo = "dwm-status";
+    rev = version;
+    sha256 = "0nw0iz78mnrmgpc471yjv7yzsaf7346mwjp6hm5kbsdclvrdq9d7";
+  };
+
+  buildInputs = [
+    dbus
+    gdk_pixbuf
+    libnotify
+    pkgconfig
+  ];
+
+  cargoSha256 = "0169k91pb7ipvi0m71cmkppp1klgp5ghampa7x0fxkyrvrf0dvqg";
+
+  meta = with stdenv.lib; {
+    description = "DWM status service which dynamically updates when needed";
+    homepage = https://github.com/Gerschtli/dwm-status;
+    license = with licenses; [ mit ];
+    maintainers = with maintainers; [ gerschtli ];
+    platforms = platforms.linux;
+  };
+}