roboto-serif: init at 1.007
This commit is contained in:
parent
518131bba8
commit
15036f2664
2 changed files with 44 additions and 0 deletions
42
pkgs/data/fonts/roboto-serif/default.nix
Normal file
42
pkgs/data/fonts/roboto-serif/default.nix
Normal file
|
@ -0,0 +1,42 @@
|
|||
{ lib
|
||||
, stdenvNoCC
|
||||
, fetchurl
|
||||
, unzip
|
||||
}:
|
||||
|
||||
stdenvNoCC.mkDerivation rec {
|
||||
pname = "roboto-serif";
|
||||
version = "1.007";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/googlefonts/roboto-serif/releases/download/v${version}/RobotoSerifFonts-v${version}.zip";
|
||||
hash = "sha256-A14GztkTvaLBvcm1i3A0Vi9vaz77nFYYoSNggqbffFo=";
|
||||
};
|
||||
|
||||
sourceRoot = ".";
|
||||
|
||||
nativeBuildInputs = [
|
||||
unzip
|
||||
];
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
|
||||
install -Dm644 variable/*.ttf -t $out/share/fonts/truetype
|
||||
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
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.
|
||||
'';
|
||||
homepage = "https://github.com/googlefonts/roboto-serif";
|
||||
license = licenses.ofl;
|
||||
maintainers = with maintainers; [ wegank ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
|
@ -27661,6 +27661,8 @@ with pkgs;
|
|||
|
||||
roboto-mono = callPackage ../data/fonts/roboto-mono { };
|
||||
|
||||
roboto-serif = callPackage ../data/fonts/roboto-serif { };
|
||||
|
||||
roboto-slab = callPackage ../data/fonts/roboto-slab { };
|
||||
|
||||
hasklig = callPackage ../data/fonts/hasklig {};
|
||||
|
|
Loading…
Reference in a new issue