38 lines
1.2 KiB
Nix
38 lines
1.2 KiB
Nix
{ stdenv, lib, rustPlatform, fetchFromGitHub, dbus, gdk-pixbuf, libnotify, makeWrapper, pkgconfig, xorg
|
|
, enableAlsaUtils ? true, alsaUtils, coreutils
|
|
, enableNetwork ? true, dnsutils, iproute, wirelesstools }:
|
|
|
|
let
|
|
bins = lib.optionals enableAlsaUtils [ alsaUtils coreutils ]
|
|
++ lib.optionals enableNetwork [ dnsutils iproute wirelesstools ];
|
|
in
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
name = "dwm-status-${version}";
|
|
version = "1.6.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Gerschtli";
|
|
repo = "dwm-status";
|
|
rev = version;
|
|
sha256 = "16vf7val1isc4227amng2ap9af34xa2va23dxv43px006xhrar78";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper pkgconfig ];
|
|
buildInputs = [ dbus gdk-pixbuf libnotify xorg.libX11 ];
|
|
|
|
cargoSha256 = "0pprf8509d321azg2l51lpxylgpk7290y38z9p5hxgkcwhrhrcss";
|
|
|
|
postInstall = lib.optionalString (bins != []) ''
|
|
wrapProgram $out/bin/dwm-status --prefix "PATH" : "${stdenv.lib.makeBinPath bins}"
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Highly performant and configurable DWM status service";
|
|
homepage = https://github.com/Gerschtli/dwm-status;
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ gerschtli ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|