2021-01-25 00:26:54 -08:00
|
|
|
{ lib, rustPlatform, fetchFromGitHub, dbus, gdk-pixbuf, libnotify, makeWrapper, pkg-config, xorg
|
2018-12-27 10:58:43 -08:00
|
|
|
, enableAlsaUtils ? true, alsaUtils, coreutils
|
2021-03-14 09:05:16 -07:00
|
|
|
, enableNetwork ? true, dnsutils, iproute2, wirelesstools }:
|
2018-12-01 08:03:40 -08:00
|
|
|
|
|
|
|
let
|
2018-12-27 10:58:43 -08:00
|
|
|
bins = lib.optionals enableAlsaUtils [ alsaUtils coreutils ]
|
2021-03-14 09:05:16 -07:00
|
|
|
++ lib.optionals enableNetwork [ dnsutils iproute2 wirelesstools ];
|
2018-12-01 08:03:40 -08:00
|
|
|
in
|
2018-06-10 16:57:59 -07:00
|
|
|
|
2018-06-10 15:24:13 -07:00
|
|
|
rustPlatform.buildRustPackage rec {
|
2019-08-31 04:41:23 -07:00
|
|
|
pname = "dwm-status";
|
2021-05-08 07:55:30 -07:00
|
|
|
version = "1.7.2";
|
2018-06-10 15:24:13 -07:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Gerschtli";
|
2021-05-07 22:05:15 -07:00
|
|
|
repo = pname;
|
2021-05-08 07:55:30 -07:00
|
|
|
rev = version;
|
|
|
|
sha256 = "sha256-Y1J0nCVEmGKgQP+GEtPqK8l3SRuls5yesvJuowLDzUo=";
|
2018-06-10 15:24:13 -07:00
|
|
|
};
|
|
|
|
|
2021-01-18 22:50:56 -08:00
|
|
|
nativeBuildInputs = [ makeWrapper pkg-config ];
|
2019-05-22 04:03:39 -07:00
|
|
|
buildInputs = [ dbus gdk-pixbuf libnotify xorg.libX11 ];
|
2018-06-10 15:24:13 -07:00
|
|
|
|
2021-05-08 07:55:30 -07:00
|
|
|
cargoSha256 = "sha256-8/vzJXZjSQmefHMo5BXKTRiLy2F3wfIn8VgPMJxtIvY=";
|
2018-06-10 15:24:13 -07:00
|
|
|
|
2018-12-27 10:58:43 -08:00
|
|
|
postInstall = lib.optionalString (bins != []) ''
|
2021-01-15 05:21:58 -08:00
|
|
|
wrapProgram $out/bin/dwm-status --prefix "PATH" : "${lib.makeBinPath bins}"
|
2018-06-10 16:57:59 -07:00
|
|
|
'';
|
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2018-06-28 04:10:37 -07:00
|
|
|
description = "Highly performant and configurable DWM status service";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/Gerschtli/dwm-status";
|
2018-06-10 15:24:13 -07:00
|
|
|
license = with licenses; [ mit ];
|
|
|
|
maintainers = with maintainers; [ gerschtli ];
|
2021-05-07 22:05:15 -07:00
|
|
|
mainProgram = pname;
|
2018-06-10 15:24:13 -07:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|