flake.nix: remove determinate

hosts/dunamis/nix.nix: replace with lix
hosts/eldrid/nix.nix: replace with lix
hosts/sarien/nix.nix: replace with lix
packages/wl-tray-bridge/default.nix: remove

Signed-off-by: unexplrd <unexplrd@linerds.us>
This commit is contained in:
2025-04-07 12:34:19 +03:00
parent 27fe6b6b8d
commit dd8be2c147
5 changed files with 2 additions and 59 deletions
-45
View File
@@ -1,45 +0,0 @@
{
lib,
rustPlatform,
fetchFromGitHub,
pkg-config,
cairo,
glib,
pango,
stdenv,
wayland,
}:
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-YuxLTC7/EiBqqzYrFQDwxJUS7D0M3RvlBrybBZya9/Q=";
nativeBuildInputs = [
pkg-config
];
buildInputs = [
cairo
glib
pango
] ++ lib.optionals stdenv.isLinux [
wayland
];
meta = {
description = "";
homepage = "https://github.com/mahkoh/wl-tray-bridge";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ ];
mainProgram = "wl-tray-bridge";
};
}