updated ewwbar

This commit is contained in:
willifan 2025-01-14 17:35:52 +01:00
parent f2ed447299
commit b3f466d9a5
2 changed files with 7 additions and 8 deletions

View file

@ -18,7 +18,6 @@
pkgs.pulseaudio
pkgs.inotify-tools
pkgs.papirus-icon-theme
pkgs.eww
];
};
}

View file

@ -4,17 +4,17 @@
, pkg-config
, libxkbcommon
}:
rustPlatform.buildRustPackage {
rustPlatform.buildRustPackage rec {
pname = "ewwbar";
version = "0.1.0";
version = "v0.1.1";
src = fetchurl {
url = "https://git.huwe.mooo.com/willifan/desktop-utils/archive/main.tar.gz";
sha256 = "sha256-qolavUf7wKjwXlbBOz5gphjk1aqCBgbdLY62N3plbB8=";
url = "https://git.huwe.mooo.com/willifan/desktop-utils/archive/${version}.tar.gz";
sha256 = "sha256-yUwZdW8NusSS0cPmdl87z1C8rqq2/eBNdkqprbSkmUE=";
};
cargoHash = "sha256-H0Mm5BdxmR6WM3KHRSuBYfCxSdLcp95sT4qbARL5ywU=";
cargoHash = "sha256-89Vljhbv2yLJtnr/6GLAuXkhVovJn1Iy+8jNgdPCCu8=";
nativeBuildInputs = [
@ -25,12 +25,12 @@ rustPlatform.buildRustPackage {
libxkbcommon
];
meta = with pkgs.lib; {
meta = with lib; {
description = "utils for my desktop";
homepage = " git.huwe.mooo.com/willifan/desktop-utils";
license = licenses.gpl3;
platforms = platforms.unix;
mainProgram = "ewwbar";
};
};
}