mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 04:46:43 +00:00
28 lines
701 B
Nix
28 lines
701 B
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, rustPlatform
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "swaycons";
|
|
version = "unstable-2023-11-29";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "allie-wake-up";
|
|
repo = "swaycons";
|
|
rev = "aa1102393be34e8bd7ed4e74c574e851fbd8cff9";
|
|
hash = "sha256-vyZcfBH2mry8Yd41QPX4+yLv0nS9J1yrgg7lpslJs7M=";
|
|
};
|
|
|
|
cargoHash = "sha256-cdZ7DpH//c9TulvPYd6aaXpQHYC1b+T7BrxAyr56Pf0=";
|
|
|
|
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 ];
|
|
};
|
|
}
|