dwm-status: init at 0.4.0 (#41726)
This commit is contained in:
parent
4d8c0313b8
commit
895e4c2687
30
pkgs/applications/window-managers/dwm/dwm-status.nix
Normal file
30
pkgs/applications/window-managers/dwm/dwm-status.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
@ -15437,6 +15437,8 @@ with pkgs;
|
|||||||
patches = config.dwm.patches or [];
|
patches = config.dwm.patches or [];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
dwm-status = callPackage ../applications/window-managers/dwm/dwm-status.nix { };
|
||||||
|
|
||||||
dynamips = callPackage ../applications/virtualization/dynamips { };
|
dynamips = callPackage ../applications/virtualization/dynamips { };
|
||||||
|
|
||||||
evilwm = callPackage ../applications/window-managers/evilwm {
|
evilwm = callPackage ../applications/window-managers/evilwm {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user