Files
Dark Steveneq 646b892680
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
push sheeet
2025-10-09 14:15:47 +02:00

34 lines
846 B
Nix

{
lib,
stdenvNoCC,
fetchFromGitHub,
}:
stdenvNoCC.mkDerivation {
pname = "icomoon-feather";
version = "0-unstable-2024-05-11";
src = fetchFromGitHub {
owner = "adi1090x";
repo = "polybar-themes";
rev = "adb6a4546a8351a469fa779df173e46b69aa1ac3";
sparseCheckout = [ "fonts/panels/icomoon_feather.ttf" ];
hash = "sha256-QL7/pfIqOd2JOm6rkH+P4rMg0AhGllfkReQ03YeGW+8=";
};
installPhase = ''
runHook preInstall
install -Dm644 fonts/panels/icomoon_feather.ttf -t $out/share/fonts/truetype/
runHook postInstall
'';
meta = with lib; {
homepage = "https://github.com/adi1090x/polybar-themes/tree/master/fonts/panels";
description = "Icomoon feather font";
license = licenses.agpl3Plus;
maintainers = with maintainers; [ luftmensch-luftmensch ];
platforms = platforms.all;
};
}