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