nixpkgs/pkgs/data/fonts/recursive/default.nix

27 lines
692 B
Nix
Raw Normal View History

{ lib, fetchzip }:
2019-11-10 16:23:42 +00:00
let
version = "1.078";
in
fetchzip {
name = "recursive-${version}";
2019-11-10 16:23:42 +00:00
url = "https://github.com/arrowtype/recursive/releases/download/v${version}/ArrowType-Recursive-${version}.zip";
2019-11-10 16:23:42 +00:00
postFetch = ''
mkdir -p $out/share/fonts/
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
'';
sha256 = "0vmdcqz6rlshfk653xpanyxps96p85b1spqahl3yiy29mq4xfdn3";
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;
};
}