python312Packages.llama-index: 0.12.9 -> 0.12.9.post1 (#371957)
[NixPkgs.git] / pkgs / by-name / li / linden-hill / package.nix
blob07d41919b2c25db638f4d33976c65df40ea2011a
2   lib,
3   fetchFromGitHub,
4   stdenvNoCC,
5 }:
7 stdenvNoCC.mkDerivation {
8   pname = "linden-hill";
9   version = "2011-05-25";
11   src = fetchFromGitHub {
12     owner = "theleagueof";
13     repo = "linden-hill";
14     rev = "a3f7ae6c4cac1b7e5ce5269e1fcc6a2fbb9e31ee";
15     hash = "sha256-EjXcLjzVQeOJgLxGua8t0oMc+APOsONGGpG6VJVCgFw=";
16   };
18   installPhase = ''
19     runHook preInstall
21     install -D -m444 -t $out/share/fonts/opentype $src/*.otf
23     runHook postInstall
24   '';
26   meta = {
27     description = "Digital version of Frederic Goudy’s Deepdene";
28     longDescription = ''
29       Linden Hill is a digital version of Frederic Goudy’s Deepdene. The
30       package includes roman and italic.
31     '';
32     homepage = "https://www.theleagueofmoveabletype.com/linden-hill";
33     license = lib.licenses.ofl;
34     maintainers = with lib.maintainers; [ minijackson ];
35   };