writers: add writeGuile[Bin] (#364531)
[NixPkgs.git] / pkgs / by-name / ro / roboto-slab / package.nix
blobcd5c62bd4a7bd76d2e2c1aa34b98414c9c2c6da6
2   lib,
3   stdenv,
4   fetchFromGitHub,
5 }:
7 stdenv.mkDerivation {
8   pname = "roboto-slab";
9   version = "2.000";
11   src = fetchFromGitHub {
12     owner = "googlefonts";
13     repo = "robotoslab";
14     rev = "baeeba45e0c3ccdcfb6a70dc564785941aafef5d";
15     sha256 = "1v6z0a2xgwgf9dyj62sriy8ckwpbwlxkki6gfax1f4h4livvzpdn";
16   };
18   installPhase = ''
19     mkdir -p $out/share/fonts/truetype
20     cp -a fonts/static/*.ttf $out/share/fonts/truetype/
21   '';
23   outputHashAlgo = "sha256";
24   outputHashMode = "recursive";
25   outputHash = "0g663npi5lkvwcqafd4cjrm90ph0nv1lig7d19xzfymnj47qpj8x";
27   meta = with lib; {
28     homepage = "https://www.google.com/fonts/specimen/Roboto+Slab";
29     description = "Roboto Slab Typeface by Google";
30     longDescription = ''
31       Roboto has a dual nature. It has a mechanical skeleton and the forms
32       are largely geometric. At the same time, the font features friendly
33       and open curves. While some grotesks distort their letterforms to
34       force a rigid rhythm, Roboto doesn't compromise, allowing letters to
35       be settled into their natural width. This makes for a more natural
36       reading rhythm more commonly found in humanist and serif types.
38       This is the Roboto Slab family, which can be used alongside the normal
39       Roboto family and the Roboto Condensed family.
40     '';
41     license = licenses.asl20;
42     platforms = platforms.all;
43     maintainers = [ maintainers.romildo ];
44   };