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

26 lines
630 B
Nix
Raw Normal View History

{ lib, fetchzip }:
let
2019-05-30 19:49:50 -07:00
version = "3.6";
in fetchzip {
name = "inter-${version}";
url = "https://github.com/rsms/inter/releases/download/v${version}/Inter-${version}.zip";
postFetch = ''
mkdir -p $out/share/fonts/opentype
unzip -j $downloadedFile \*.otf -d $out/share/fonts/opentype
'';
2019-05-30 19:49:50 -07:00
sha256 = "0m0psphc4npxfn6cpvyx5xs54grwn3mjbj9yyipm0lbihq4mih7q";
meta = with lib; {
homepage = https://rsms.me/inter/;
description = "A typeface specially designed for user interfaces";
license = licenses.ofl;
platforms = platforms.all;
2019-05-30 19:49:50 -07:00
maintainers = with maintainers; [ demize dtzWill ];
};
}