2023-01-28 07:27:25 +01:00
|
|
|
|
{ lib, stdenvNoCC, fetchzip }:
|
2016-08-30 20:26:06 +02:00
|
|
|
|
|
2023-01-28 07:27:25 +01:00
|
|
|
|
stdenvNoCC.mkDerivation rec {
|
|
|
|
|
pname = "roboto";
|
2018-01-12 21:32:04 +01:00
|
|
|
|
version = "2.138";
|
2016-08-30 20:26:06 +02:00
|
|
|
|
|
2023-01-28 07:27:25 +01:00
|
|
|
|
src = fetchzip {
|
|
|
|
|
url = "https://github.com/google/roboto/releases/download/v${version}/roboto-unhinted.zip";
|
|
|
|
|
stripRoot = false;
|
|
|
|
|
hash = "sha256-ue3PUZinBpcYgSho1Zrw1KHl7gc/GlN1GhWFk6g5QXE=";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
|
runHook preInstall
|
2016-08-30 20:26:06 +02:00
|
|
|
|
|
2023-01-28 07:27:25 +01:00
|
|
|
|
install -Dm644 *.ttf -t $out/share/fonts/truetype
|
|
|
|
|
|
|
|
|
|
runHook postInstall
|
|
|
|
|
'';
|
2017-08-11 06:53:39 +02:00
|
|
|
|
|
2016-08-30 20:26:06 +02:00
|
|
|
|
meta = {
|
2020-04-01 03:11:51 +02:00
|
|
|
|
homepage = "https://github.com/google/roboto";
|
2016-08-30 20:26:06 +02:00
|
|
|
|
description = "The Roboto family of fonts";
|
|
|
|
|
longDescription = ''
|
|
|
|
|
Google’s signature family of fonts, the default font on Android and
|
|
|
|
|
Chrome OS, and the recommended font for Google’s visual language,
|
|
|
|
|
Material Design.
|
|
|
|
|
'';
|
2019-05-13 03:55:32 +02:00
|
|
|
|
license = lib.licenses.asl20;
|
|
|
|
|
platforms = lib.platforms.all;
|
|
|
|
|
maintainers = [ lib.maintainers.romildo ];
|
2016-08-30 20:26:06 +02:00
|
|
|
|
};
|
2023-01-28 07:27:25 +01:00
|
|
|
|
}
|