mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 11:02:05 +00:00
39 lines
1.2 KiB
Nix
39 lines
1.2 KiB
Nix
|
{ stdenv, fetchFromGitHub }:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
name = "libre-bodoni-2.000";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "impallari";
|
||
|
repo = "Libre-Bodoni";
|
||
|
rev = "995a40e8d6b95411d660cbc5bb3f726ffd080c7d";
|
||
|
sha256 = "1ncfkvmcxh2lphfra43h8482qglpd965v96agvz092697xwrbyn9";
|
||
|
};
|
||
|
|
||
|
installPhase = ''
|
||
|
mkdir -p $out/share/fonts/opentype
|
||
|
mkdir -p $out/share/doc/${name}
|
||
|
cp -v "fonts/v2000 - initial glyphs migration/OTF/"*.otf $out/share/fonts/opentype/
|
||
|
cp -v README.md FONTLOG.txt $out/share/doc/${name}
|
||
|
'';
|
||
|
|
||
|
meta = with stdenv.lib; {
|
||
|
description = "Bodoni fonts adapted for today's web requirements";
|
||
|
longDescription = ''
|
||
|
The Libre Bodoni fonts are based on the 19th century Morris Fuller
|
||
|
Benton's ATF design, but specifically adapted for today's web
|
||
|
requirements.
|
||
|
|
||
|
They are a perfect choice for everything related to elegance, style,
|
||
|
luxury and fashion.
|
||
|
|
||
|
Libre Bodoni currently features four styles: Regular, Italic, Bold and
|
||
|
Bold Italic.
|
||
|
'';
|
||
|
homepage = https://github.com/impallari/Libre-Bodoni;
|
||
|
license = licenses.ofl;
|
||
|
maintainers = with maintainers; [ cmfwyp ];
|
||
|
platforms = platforms.all;
|
||
|
};
|
||
|
}
|