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