dwm-status: init at 0.4.0 (#41726)

This commit is contained in:
Tobias Happ 2018-06-11 00:24:13 +02:00 committed by xeji
parent 4d8c0313b8
commit 895e4c2687
2 changed files with 32 additions and 0 deletions

View file

@ -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;
};
}

View file

@ -15437,6 +15437,8 @@ with pkgs;
patches = config.dwm.patches or [];
};
dwm-status = callPackage ../applications/window-managers/dwm/dwm-status.nix { };
dynamips = callPackage ../applications/virtualization/dynamips { };
evilwm = callPackage ../applications/window-managers/evilwm {