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

30 lines
826 B
Nix
Raw Normal View History

{ lib, fetchzip }:
2016-08-30 20:26:06 +02:00
let
2018-01-12 21:32:04 +01:00
version = "2.138";
2019-08-13 23:52:01 +02:00
in fetchzip {
name = "roboto-${version}";
2016-08-30 20:26:06 +02:00
url = "https://github.com/google/roboto/releases/download/v${version}/roboto-unhinted.zip";
2016-08-30 20:26:06 +02:00
postFetch = ''
mkdir -p $out/share/fonts
2018-01-12 21:32:04 +01:00
unzip -j $downloadedFile \*.ttf -x __MACOSX/\* -d $out/share/fonts/truetype
2016-08-30 20:26:06 +02:00
'';
2018-01-12 21:32:04 +01:00
sha256 = "1s3c48wwvvwd3p4w3hfkri5v2c54j2bdxmd3bjv54klc5mrlh6z3";
2016-08-30 20:26:06 +02:00
meta = {
homepage = "https://github.com/google/roboto";
2016-08-30 20:26:06 +02:00
description = "The Roboto family of fonts";
longDescription = ''
Googles signature family of fonts, the default font on Android and
Chrome OS, and the recommended font for Googles visual language,
Material Design.
'';
license = lib.licenses.asl20;
platforms = lib.platforms.all;
maintainers = [ lib.maintainers.romildo ];
2016-08-30 20:26:06 +02:00
};
}