ironbar: 0.16.1 → 0.17.0 (#444768)

This commit is contained in:
dish
2025-09-21 19:40:37 +00:00
committed by GitHub

View File

@@ -23,6 +23,7 @@
luajitPackages, luajitPackages,
libpulseaudio, libpulseaudio,
features ? [ ], features ? [ ],
systemd,
}: }:
let let
@@ -30,16 +31,16 @@ let
in in
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "ironbar"; pname = "ironbar";
version = "0.16.1"; version = "0.17.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "JakeStanger"; owner = "JakeStanger";
repo = "ironbar"; repo = "ironbar";
rev = "v${version}"; rev = "v${version}";
hash = "sha256-UtBO1XaghmzKv9qfhfoLi4ke+mf+Mtgh4f4UpCeEVDg="; hash = "sha256-8Ol/EvG7BPNyrJ3SdwSYtJcTLCr4TRmsMczKXD6Wuws=";
}; };
cargoHash = "sha256-l+Y/ntuqaasDL0cEHSwscFxAs1jC0bm9oTU0J/K60AY="; cargoHash = "sha256-nBoe4Xq1MAKNUyf61WSA2r83nNJeZiBXL0PJRc+XXpc=";
buildInputs = [ buildInputs = [
gtk3 gtk3
@@ -52,6 +53,7 @@ rustPlatform.buildRustPackage rec {
hicolor-icon-theme hicolor-icon-theme
gsettings-desktop-schemas gsettings-desktop-schemas
libxkbcommon libxkbcommon
systemd
] ]
++ lib.optionals (hasFeature "http") [ openssl ] ++ lib.optionals (hasFeature "http") [ openssl ]
++ lib.optionals (hasFeature "volume") [ libpulseaudio ] ++ lib.optionals (hasFeature "volume") [ libpulseaudio ]