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

27 lines
687 B
Nix
Raw Normal View History

{ lib, fetchzip }:
2019-11-10 16:23:42 +00:00
let
2020-05-09 09:20:00 +00:00
version = "1.051";
in
fetchzip {
name = "recursive-${version}";
2019-11-10 16:23:42 +00:00
url = "https://github.com/arrowtype/recursive/releases/download/${version}/Recursive-Beta_${version}.zip";
2019-11-10 16:23:42 +00:00
postFetch = ''
mkdir -p $out/share/fonts/
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-05-09 09:20:00 +00:00
sha256 = "1cqlljbzvrxamswcqx8jbr61q4kji7yil5ic1mh60x4yfsk9x5wn";
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;
};
}