forked from mirrors/nixpkgs
linden-hill: init at 2011-05-25
This commit is contained in:
parent
fc032281f3
commit
0639959365
32
pkgs/data/fonts/linden-hill/default.nix
Normal file
32
pkgs/data/fonts/linden-hill/default.nix
Normal file
|
@ -0,0 +1,32 @@
|
|||
{ lib, fetchFromGitHub, stdenvNoCC }:
|
||||
|
||||
stdenvNoCC.mkDerivation (self: {
|
||||
pname = "linden-hill";
|
||||
version = "2011-05-25";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "theleagueof";
|
||||
repo = self.pname;
|
||||
rev = "a3f7ae6c4cac1b7e5ce5269e1fcc6a2fbb9e31ee";
|
||||
hash = "sha256-EjXcLjzVQeOJgLxGua8t0oMc+APOsONGGpG6VJVCgFw=";
|
||||
};
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
|
||||
install -D -m444 -t $out/share/fonts/opentype $src/*.otf
|
||||
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "A digital version of Frederic Goudy’s Deepdene";
|
||||
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 ];
|
||||
};
|
||||
})
|
|
@ -27318,6 +27318,8 @@ with pkgs;
|
|||
|
||||
lightly-qt = libsForQt5.callPackage ../data/themes/lightly-qt { };
|
||||
|
||||
linden-hill = callPackage ../data/fonts/linden-hill { };
|
||||
|
||||
line-awesome = callPackage ../data/fonts/line-awesome { };
|
||||
|
||||
linja-pi-pu-lukin = callPackage ../data/fonts/linja-pi-pu-lukin {};
|
||||
|
|
Loading…
Reference in a new issue