ashell: 0.8.0 -> 0.9.0, added nix-update-script (#529541)

This commit is contained in:
Michael Daniels
2026-06-08 23:59:20 +00:00
committed by GitHub
+7 -4
View File
@@ -11,19 +11,20 @@
wayland,
udev,
vulkan-loader,
nix-update-script,
}:
rustPlatform.buildRustPackage (finalAttrs: {
pname = "ashell";
version = "0.8.0";
version = "0.9.0";
src = fetchFromGitHub {
owner = "MalpenZibo";
repo = "ashell";
tag = finalAttrs.version;
hash = "sha256-X9TU866PAzaf52qKsCpeJvwE0suu1lJndHNQdPg51HM=";
hash = "sha256-QRNEc2HNqA1tZk/jW/MXDwXda58yNlkw86SCTjH1/1w=";
};
cargoHash = "sha256-nhYbehlgB8pzMoj39G0BHRca9mIT+0QjUaebCx+DDE0=";
cargoHash = "sha256-bLZcRASBGV9Y/QlDVBdOl2ElZDLI1KUAh5MlOsjmlKs=";
nativeBuildInputs = [
pkg-config
@@ -45,10 +46,12 @@ rustPlatform.buildRustPackage (finalAttrs: {
]
++ finalAttrs.runtimeDependencies;
passthru.updateScript = nix-update-script { };
meta = {
description = "Ready to go Wayland status bar for Hyprland";
homepage = "https://github.com/MalpenZibo/ashell";
license = lib.licenses.mit;
license = lib.licenses.gpl3Plus;
mainProgram = "ashell";
maintainers = with lib.maintainers; [ justdeeevin ];
platforms = lib.platforms.linux;