26 lines
632 B
Nix
26 lines
632 B
Nix
{ stdenv, fetchzip }:
|
|
|
|
let
|
|
version = "3.4";
|
|
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
|
|
'';
|
|
|
|
sha256 = "1dl4zc1a5dl9xkg094zmzy6bk7gms8vhsiln58ix7sffzcf3pri8";
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://rsms.me/inter/;
|
|
description = "A typeface specially designed for user interfaces";
|
|
license = licenses.ofl;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ demize ];
|
|
};
|
|
}
|
|
|