2020-02-29 22:30:00 +00:00
|
|
|
{ lib, fetchzip }:
|
2019-11-10 16:23:42 +00:00
|
|
|
|
2020-02-29 22:30:00 +00:00
|
|
|
let
|
2020-09-03 03:54:00 +01:00
|
|
|
version = "1.064";
|
2020-02-29 22:30:00 +00:00
|
|
|
in
|
|
|
|
fetchzip {
|
|
|
|
name = "recursive-${version}";
|
2019-11-10 16:23:42 +00:00
|
|
|
|
2020-08-27 10:20:00 +01:00
|
|
|
url = "https://github.com/arrowtype/recursive/releases/download/${version}/ArrowType-Recursive-${version}.zip";
|
2019-11-10 16:23:42 +00:00
|
|
|
|
2020-02-29 22:30:00 +00:00
|
|
|
postFetch = ''
|
|
|
|
mkdir -p $out/share/fonts/
|
2020-08-22 01:54:49 +01:00
|
|
|
unzip -j $downloadedFile \*.otf -d $out/share/fonts/opentype
|
|
|
|
unzip -j $downloadedFile \*.ttf -d $out/share/fonts/truetype
|
|
|
|
unzip -j $downloadedFile \*.woff2 -d $out/share/fonts/woff2
|
2019-11-10 16:23:42 +00:00
|
|
|
'';
|
|
|
|
|
2020-09-03 03:54:00 +01:00
|
|
|
sha256 = "1pbrqk848nkaambvsz0n8f88xdm8hyib83in27rmal739qh9d1z6";
|
2020-02-29 22:30:00 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://recursive.design/";
|
2019-11-10 16:23:42 +00:00
|
|
|
description = "A variable font family for code & UI";
|
|
|
|
license = licenses.ofl;
|
|
|
|
maintainers = [ maintainers.eadwu ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|