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
739 B
Nix
29 lines
739 B
Nix
{
|
|
lib,
|
|
fetchzip,
|
|
stdenvNoCC,
|
|
}:
|
|
|
|
stdenvNoCC.mkDerivation rec {
|
|
pname = "recursive";
|
|
version = "1.085";
|
|
|
|
src = fetchzip {
|
|
url = "https://github.com/arrowtype/recursive/releases/download/v${version}/ArrowType-Recursive-${version}.zip";
|
|
sha256 = "sha256-hnGnKnRoQN8vFStW8TjLrrTL1dWsthUEWxfaGF0b0vM=";
|
|
};
|
|
|
|
installPhase = ''
|
|
install -D -t $out/share/fonts/opentype/ $(find $src -type f -name '*.otf')
|
|
install -D -t $out/share/fonts/truetype/ $(find $src -type f -name '*.ttf')
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://recursive.design/";
|
|
description = "Variable font family for code & UI";
|
|
license = licenses.ofl;
|
|
maintainers = [ maintainers.eadwu ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|