writers: add writeGuile[Bin] (#364531)
[NixPkgs.git] / pkgs / by-name / ro / roboto / package.nix
blobb22a68fde945905fb33488e8df2f4921d4c0d84e
2   lib,
3   stdenvNoCC,
4   fetchzip,
5 }:
7 stdenvNoCC.mkDerivation rec {
8   pname = "roboto";
9   version = "2.138";
11   src = fetchzip {
12     url = "https://github.com/google/roboto/releases/download/v${version}/roboto-unhinted.zip";
13     stripRoot = false;
14     hash = "sha256-ue3PUZinBpcYgSho1Zrw1KHl7gc/GlN1GhWFk6g5QXE=";
15   };
17   installPhase = ''
18     runHook preInstall
20     install -Dm644 *.ttf -t $out/share/fonts/truetype
22     runHook postInstall
23   '';
25   meta = {
26     homepage = "https://github.com/google/roboto";
27     description = "Roboto family of fonts";
28     longDescription = ''
29       Google’s signature family of fonts, the default font on Android and
30       Chrome OS, and the recommended font for Google’s visual language,
31       Material Design.
32     '';
33     license = lib.licenses.asl20;
34     platforms = lib.platforms.all;
35     maintainers = [ lib.maintainers.romildo ];
36   };