Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
29 lines
701 B
Nix
29 lines
701 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
rustPlatform,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage {
|
|
pname = "swaycons";
|
|
version = "unstable-2023-11-29";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "allie-wake-up";
|
|
repo = "swaycons";
|
|
rev = "aa1102393be34e8bd7ed4e74c574e851fbd8cff9";
|
|
hash = "sha256-vyZcfBH2mry8Yd41QPX4+yLv0nS9J1yrgg7lpslJs7M=";
|
|
};
|
|
|
|
cargoHash = "sha256-LE+YEFmkB4EBQcuxbExN9Td5LWpI4AZgyVHXdTyq7gU=";
|
|
|
|
meta = with lib; {
|
|
description = "Window Icons in Sway with Nerd Fonts";
|
|
mainProgram = "swaycons";
|
|
homepage = "https://github.com/allie-wake-up/swaycons";
|
|
license = licenses.asl20;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ aacebedo ];
|
|
};
|
|
}
|