nixpkgs/pkgs/data/fonts/goudy-bookletter-1911/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
753 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, stdenvNoCC }:
2024-07-13 02:59:02 +01:00
stdenvNoCC.mkDerivation {
pname = "goudy-bookletter-1911";
version = "2011-05-11";
src = fetchFromGitHub {
owner = "theleagueof";
repo = "goudy-bookletter-1911";
rev = "85ff5b834b4f63feb36fd2053949c19660580e48";
hash = "sha256-11axs1+SRQj+1lYTq2LYf1I65WrrvB/UnAgZkHPP1N8=";
};
installPhase = ''
runHook preInstall
install -D -m444 -t $out/share/fonts/opentype $src/*.otf
runHook postInstall
'';
meta = {
description = "Public domain font based on Frederic Goudys Kennerley Oldstyle";
homepage = "https://www.theleagueofmoveabletype.com/goudy-bookletter-1911";
license = lib.licenses.ofl;
maintainers = with lib.maintainers; [ minijackson ];
};
2024-07-13 02:59:02 +01:00
}