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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
883 B
Nix
Raw Normal View History

{ lib, stdenvNoCC, fetchzip }:
2016-08-30 21:26:06 +03:00
stdenvNoCC.mkDerivation rec {
pname = "roboto";
2018-01-12 23:32:04 +03:00
version = "2.138";
2016-08-30 21:26:06 +03: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 21:26:06 +03:00
install -Dm644 *.ttf -t $out/share/fonts/truetype
runHook postInstall
'';
2016-08-30 21:26:06 +03:00
meta = {
homepage = "https://github.com/google/roboto";
2016-08-30 21:26:06 +03: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 21:26:06 +03:00
};
}