27 lines
687 B
Nix
27 lines
687 B
Nix
{ lib, fetchzip }:
|
|
|
|
let
|
|
version = "1.051";
|
|
in
|
|
fetchzip {
|
|
name = "recursive-${version}";
|
|
|
|
url = "https://github.com/arrowtype/recursive/releases/download/${version}/Recursive-Beta_${version}.zip";
|
|
|
|
postFetch = ''
|
|
mkdir -p $out/share/fonts/
|
|
unzip -j $downloadedFile \*.ttf -d $out/share/fonts/truetype
|
|
unzip -j $downloadedFile \*.woff2 -d $out/share/fonts/woff2
|
|
'';
|
|
|
|
sha256 = "1cqlljbzvrxamswcqx8jbr61q4kji7yil5ic1mh60x4yfsk9x5wn";
|
|
|
|
meta = with lib; {
|
|
homepage = "https://recursive.design/";
|
|
description = "A variable font family for code & UI";
|
|
license = licenses.ofl;
|
|
maintainers = [ maintainers.eadwu ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|