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
|
2021-11-27 04:20:00 +00:00
|
|
|
version = "1.084";
|
2020-02-29 22:30:00 +00:00
|
|
|
in
|
|
|
|
fetchzip {
|
|
|
|
name = "recursive-${version}";
|
2019-11-10 16:23:42 +00:00
|
|
|
|
2021-01-20 04:20:00 +00:00
|
|
|
url = "https://github.com/arrowtype/recursive/releases/download/v${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 00:54:49 +00:00
|
|
|
unzip -j $downloadedFile \*.otf -d $out/share/fonts/opentype
|
|
|
|
unzip -j $downloadedFile \*.ttf -d $out/share/fonts/truetype
|
2019-11-10 16:23:42 +00:00
|
|
|
'';
|
|
|
|
|
2021-11-27 04:20:00 +00:00
|
|
|
sha256 = "sha256-YL09RVU9pgP0/aGRKECHzd5t1VmNDPtOFcRygWqIisg=";
|
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;
|
|
|
|
};
|
|
|
|
}
|