way-edges: init at 0.11.1 (#471705)

This commit is contained in:
Aleksana
2025-12-24 08:26:20 +00:00
committed by GitHub
+48
View File
@@ -0,0 +1,48 @@
{
lib,
fetchFromGitHub,
rustPlatform,
pkg-config,
libxkbcommon,
libpulseaudio,
cairo,
nix-update-script,
}:
rustPlatform.buildRustPackage (finalAttrs: {
pname = "way-edges";
version = "0.11.1";
src = fetchFromGitHub {
owner = "way-edges";
repo = "way-edges";
tag = finalAttrs.version;
hash = "sha256-1P4iOsoQolxfVGZEe+x0DvcDwB5bdBqR0OsfL+y3qQM=";
};
cargoHash = "sha256-RSCBQUZp6mxZcwsvr6OwQeXa5CmEhN8QUezv0By5j/s=";
nativeBuildInputs = [
pkg-config
];
buildInputs = [
cairo
libxkbcommon
libpulseaudio
];
RUSTFLAGS = [
"--cfg tokio_unstable"
"--cfg tokio_uring"
];
passthru.updateScript = nix-update-script { };
meta = {
description = "Wayland client focusing on widgets hidden in your screen edge";
homepage = "https://github.com/way-edges/way-edges";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ denperidge ];
mainProgram = "way-edges";
platforms = lib.platforms.linux;
};
})