2023-02-02 18:25:31 +00:00
|
|
|
|
{ lib
|
|
|
|
|
, stdenvNoCC
|
|
|
|
|
, fetchurl
|
|
|
|
|
, unzip
|
|
|
|
|
}:
|
|
|
|
|
|
|
|
|
|
stdenvNoCC.mkDerivation rec {
|
|
|
|
|
pname = "roboto-serif";
|
2023-03-04 12:14:45 +00:00
|
|
|
|
version = "1.008";
|
2023-02-02 18:25:31 +00:00
|
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
|
url = "https://github.com/googlefonts/roboto-serif/releases/download/v${version}/RobotoSerifFonts-v${version}.zip";
|
2023-03-04 12:14:45 +00:00
|
|
|
|
hash = "sha256-Nm9DcxL0CgA51nGeZJPWSCipgqwnNPlhj0wHyGhLaYQ=";
|
2023-02-02 18:25:31 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
};
|
|
|
|
|
}
|