nixpkgs/pkgs/by-name/sw/swaycons/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
706 B
Nix
Raw Normal View History

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
};
cargoHash = "sha256-cdZ7DpH//c9TulvPYd6aaXpQHYC1b+T7BrxAyr56Pf0=";
2023-01-08 12:23:16 +00:00
meta = with lib; {
description = "Window Icons in Sway with Nerd Fonts!";
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;
platforms = platforms.linux;
2023-01-08 12:23:16 +00:00
maintainers = with maintainers; [ aacebedo ];
};
}