nixpkgs/pkgs/data/fonts/inter-ui/default.nix
Will Dietz dfeaf5e316 Revert "inter(-ui): 3.3 -> 3.4"
This reverts commit 4d7a973233.
2019-04-05 15:50:50 -05:00

25 lines
632 B
Nix

{ stdenv, fetchzip }:
let
version = "3.3";
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 = "17fv33ryvbla4f4mfgw7m7gjlwyjlni90a8gpb7jws1qzn0vgazg";
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 ];
};
}