This commit is contained in:
2025-04-20 12:30:39 +03:00
parent fce3a4ff0c
commit fd163750c8
7 changed files with 887 additions and 0 deletions
+44
View File
@@ -0,0 +1,44 @@
{pkgs}: let
inherit
(pkgs)
lib
rustPlatform
fetchFromGitHub
pkg-config
cairo
glib
pango
wayland
;
in
rustPlatform.buildRustPackage rec {
pname = "wl-tray-bridge";
version = "unstable-2024-10-24";
src = fetchFromGitHub {
owner = "mahkoh";
repo = "wl-tray-bridge";
rev = "5ea5bbddcf1dbb2ab4836b00b300803c928469c5";
hash = "sha256-ewoHopL9/hgErshUWZBZ4H6MKt7iQD7x+4MebNzDdXQ=";
};
cargoHash = "sha256-yvuHE3LdFUSZkcBZH3zangFUfCZNAlkDeW8qFyU/LgU=";
nativeBuildInputs = [
pkg-config
];
buildInputs = [
cairo
glib
pango
wayland
];
meta = {
description = "";
homepage = "https://github.com/mahkoh/wl-tray-bridge";
license = lib.licenses.gpl3Only;
mainProgram = "wl-tray-bridge";
};
}