2023-01-08 12:23:16 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
fetchFromGitHub,
|
|
|
|
rustPlatform,
|
|
|
|
}:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "swaycons";
|
2024-06-01 15:09:22 +00:00
|
|
|
version = "unstable-2023-11-29";
|
2023-01-08 12:23:16 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2024-06-01 15:09:22 +00:00
|
|
|
owner = "allie-wake-up";
|
2023-01-08 12:23:16 +00:00
|
|
|
repo = "swaycons";
|
2024-06-01 15:09:22 +00:00
|
|
|
rev = "aa1102393be34e8bd7ed4e74c574e851fbd8cff9";
|
|
|
|
hash = "sha256-vyZcfBH2mry8Yd41QPX4+yLv0nS9J1yrgg7lpslJs7M=";
|
2023-01-08 12:23:16 +00:00
|
|
|
};
|
|
|
|
|
2024-07-02 09:04:59 +00:00
|
|
|
cargoHash = "sha256-cdZ7DpH//c9TulvPYd6aaXpQHYC1b+T7BrxAyr56Pf0=";
|
2023-01-08 12:23:16 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Window Icons in Sway with Nerd Fonts!";
|
2024-03-19 02:14:51 +00:00
|
|
|
mainProgram = "swaycons";
|
2024-06-01 15:09:22 +00:00
|
|
|
homepage = "https://github.com/allie-wake-up/swaycons";
|
2023-01-08 12:23:16 +00:00
|
|
|
license = licenses.asl20;
|
2024-02-27 14:22:29 +00:00
|
|
|
platforms = platforms.linux;
|
2023-01-08 12:23:16 +00:00
|
|
|
maintainers = with maintainers; [ aacebedo ];
|
|
|
|
};
|
|
|
|
}
|