mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-21 12:23:55 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
42 lines
1.2 KiB
Nix
42 lines
1.2 KiB
Nix
{ lib, stdenvNoCC, fetchFromGitHub }:
|
|
|
|
stdenvNoCC.mkDerivation rec {
|
|
pname = "libre-bodoni";
|
|
version = "2.000";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "impallari";
|
|
repo = "Libre-Bodoni";
|
|
rev = "995a40e8d6b95411d660cbc5bb3f726ffd080c7d";
|
|
hash = "sha256-yfqVeT/JiAT+fsqkXUxqlz4sEEFwEJUdvFTAzuqejtk=";
|
|
};
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
install -m444 -Dt $out/share/fonts/opentype */v2000\ -\ initial\ glyphs\ migration/OTF/*.otf
|
|
install -m444 -Dt $out/share/doc/${pname}-${version} README.md FONTLOG.txt
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with 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;
|
|
};
|
|
}
|