goudy-bookletter-1911: init at 2011-05-11
This commit is contained in:
parent
f177ccbdf3
commit
35fb11a99a
2 changed files with 30 additions and 0 deletions
28
pkgs/data/fonts/goudy-bookletter-1911/default.nix
Normal file
28
pkgs/data/fonts/goudy-bookletter-1911/default.nix
Normal file
|
@ -0,0 +1,28 @@
|
|||
{ lib, fetchFromGitHub, stdenvNoCC }:
|
||||
|
||||
stdenvNoCC.mkDerivation (self: {
|
||||
pname = "goudy-bookletter-1911";
|
||||
version = "2011-05-11";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "theleagueof";
|
||||
repo = self.pname;
|
||||
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 = "A public domain font based on Frederic Goudy’s Kennerley Oldstyle";
|
||||
homepage = "https://www.theleagueofmoveabletype.com/goudy-bookletter-1911";
|
||||
license = lib.licenses.ofl;
|
||||
maintainers = with lib.maintainers; [ minijackson ];
|
||||
};
|
||||
})
|
|
@ -27133,6 +27133,8 @@ with pkgs;
|
|||
|
||||
go-font = callPackage ../data/fonts/go-font { };
|
||||
|
||||
goudy-bookletter-1911 = callPackage ../data/fonts/goudy-bookletter-1911 { };
|
||||
|
||||
graphite-gtk-theme = callPackage ../data/themes/graphite-gtk-theme { };
|
||||
|
||||
graphite-kde-theme = callPackage ../data/themes/graphite-kde-theme { };
|
||||
|
|
Loading…
Reference in a new issue