nixpkgs/pkgs/applications/window-managers/dwm/dwm-status.nix

39 lines
1.2 KiB
Nix
Raw Normal View History

{ lib, rustPlatform, fetchFromGitHub, dbus, gdk-pixbuf, libnotify, makeWrapper, pkg-config, xorg
, 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
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-10 22:24:13 +00:00
rustPlatform.buildRustPackage rec {
2019-08-31 11:41:23 +00:00
pname = "dwm-status";
2022-02-11 16:03:59 +00:00
version = "1.7.3";
2018-06-10 22:24:13 +00:00
src = fetchFromGitHub {
owner = "Gerschtli";
repo = pname;
rev = version;
2022-02-11 16:03:59 +00:00
sha256 = "sha256-dkVo9NpGt3G6by9Of1kOlXaZn7xsVSvfNXq7KPO6HE4=";
2018-06-10 22:24:13 +00:00
};
nativeBuildInputs = [ makeWrapper pkg-config ];
2019-05-22 11:03:39 +00:00
buildInputs = [ dbus gdk-pixbuf libnotify xorg.libX11 ];
2018-06-10 22:24:13 +00:00
2022-02-11 16:03:59 +00:00
cargoSha256 = "sha256-QPnr7dUsq/RzuNLpbTRQbGB3zU6lNuPPPM9FmH4ydzY=";
2018-06-10 22:24:13 +00: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}"
'';
meta = with lib; {
2018-06-28 11:10:37 +00:00
description = "Highly performant and configurable DWM status service";
homepage = "https://github.com/Gerschtli/dwm-status";
2018-06-10 22:24:13 +00:00
license = with licenses; [ mit ];
maintainers = with maintainers; [ gerschtli ];
mainProgram = pname;
2018-06-10 22:24:13 +00:00
platforms = platforms.linux;
};
}