nixpkgs/pkgs/data/fonts/fraunces/default.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

29 lines
814 B
Nix

{ lib, stdenvNoCC, fetchzip }:
stdenvNoCC.mkDerivation rec {
pname = "fraunces";
version = "1.000";
src = fetchzip {
url = "https://github.com/undercasetype/Fraunces/releases/download/${version}/UnderCaseType_Fraunces_${version}.zip";
hash = "sha256-hu2G4Fs2I3TMEy/EBFnc88Pv3c8Mpc5rm3OwVvol7gQ=";
};
installPhase = ''
runHook preInstall
install -Dm644 */static/otf/*.otf -t $out/share/fonts/opentype
install -Dm644 */static/ttf/*.ttf */*.ttf -t $out/share/fonts/truetype
runHook postInstall
'';
meta = with lib; {
description = "Display, Old Style soft-serif typeface inspired by early 20th century typefaces";
homepage = "https://github.com/undercasetype/Fraunces";
license = licenses.ofl;
maintainers = [ ];
platforms = platforms.all;
};
}