mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 03:15:56 +03:00
4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
42 lines
1.4 KiB
Nix
42 lines
1.4 KiB
Nix
{ lib, stdenv, fetchFromGitHub }:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "roboto-slab";
|
|
version = "2.000";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "googlefonts";
|
|
repo = "robotoslab";
|
|
rev = "baeeba45e0c3ccdcfb6a70dc564785941aafef5d";
|
|
sha256 = "1v6z0a2xgwgf9dyj62sriy8ckwpbwlxkki6gfax1f4h4livvzpdn";
|
|
};
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/share/fonts/truetype
|
|
cp -a fonts/static/*.ttf $out/share/fonts/truetype/
|
|
'';
|
|
|
|
outputHashAlgo = "sha256";
|
|
outputHashMode = "recursive";
|
|
outputHash = "0g663npi5lkvwcqafd4cjrm90ph0nv1lig7d19xzfymnj47qpj8x";
|
|
|
|
meta = with lib; {
|
|
homepage = "https://www.google.com/fonts/specimen/Roboto+Slab";
|
|
description = "Roboto Slab Typeface by Google";
|
|
longDescription = ''
|
|
Roboto has a dual nature. It has a mechanical skeleton and the forms
|
|
are largely geometric. At the same time, the font features friendly
|
|
and open curves. While some grotesks distort their letterforms to
|
|
force a rigid rhythm, Roboto doesn't compromise, allowing letters to
|
|
be settled into their natural width. This makes for a more natural
|
|
reading rhythm more commonly found in humanist and serif types.
|
|
|
|
This is the Roboto Slab family, which can be used alongside the normal
|
|
Roboto family and the Roboto Condensed family.
|
|
'';
|
|
license = licenses.asl20;
|
|
platforms = platforms.all;
|
|
maintainers = [ maintainers.romildo ];
|
|
};
|
|
}
|