2019-05-13 02:55:32 +01:00
|
|
|
{ lib, fetchzip }:
|
2019-03-29 07:24:46 +00:00
|
|
|
|
|
|
|
let
|
2021-06-22 02:32:52 +01:00
|
|
|
version = "3.19";
|
2019-03-29 07:24:46 +00:00
|
|
|
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
|
|
|
|
'';
|
|
|
|
|
2021-06-22 02:32:52 +01:00
|
|
|
sha256 = "sha256-8p15thg3xyvCA/8dH2jGQoc54nzESFDyv5m47FgWrSI=";
|
2019-03-29 07:24:46 +00:00
|
|
|
|
2019-05-13 02:55:32 +01:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://rsms.me/inter/";
|
2019-03-29 07:24:46 +00:00
|
|
|
description = "A typeface specially designed for user interfaces";
|
|
|
|
license = licenses.ofl;
|
|
|
|
platforms = platforms.all;
|
2019-05-31 03:49:50 +01:00
|
|
|
maintainers = with maintainers; [ demize dtzWill ];
|
2019-03-29 07:24:46 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|