2023-02-09 11:40:11 +00:00
|
|
|
|
{ lib, fetchFromGitHub, stdenvNoCC }:
|
|
|
|
|
|
2023-04-29 16:46:19 +00:00
|
|
|
|
stdenvNoCC.mkDerivation (finalAttrs: {
|
2023-02-09 11:40:11 +00:00
|
|
|
|
pname = "linden-hill";
|
|
|
|
|
version = "2011-05-25";
|
|
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
|
owner = "theleagueof";
|
2023-04-29 16:46:19 +00:00
|
|
|
|
repo = finalAttrs.pname;
|
2023-02-09 11:40:11 +00:00
|
|
|
|
rev = "a3f7ae6c4cac1b7e5ce5269e1fcc6a2fbb9e31ee";
|
|
|
|
|
hash = "sha256-EjXcLjzVQeOJgLxGua8t0oMc+APOsONGGpG6VJVCgFw=";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
|
runHook preInstall
|
|
|
|
|
|
|
|
|
|
install -D -m444 -t $out/share/fonts/opentype $src/*.otf
|
|
|
|
|
|
|
|
|
|
runHook postInstall
|
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
meta = {
|
2024-06-20 14:57:18 +00:00
|
|
|
|
description = "Digital version of Frederic Goudy’s Deepdene";
|
2023-02-09 11:40:11 +00:00
|
|
|
|
longDescription = ''
|
|
|
|
|
Linden Hill is a digital version of Frederic Goudy’s Deepdene. The
|
|
|
|
|
package includes roman and italic.
|
|
|
|
|
'';
|
|
|
|
|
homepage = "https://www.theleagueofmoveabletype.com/linden-hill";
|
|
|
|
|
license = lib.licenses.ofl;
|
|
|
|
|
maintainers = with lib.maintainers; [ minijackson ];
|
|
|
|
|
};
|
|
|
|
|
})
|