fanwood: init at 2011-05-11

This commit is contained in:
Minijackson 2023-02-04 14:40:26 +01:00
parent 7475221525
commit f177ccbdf3
2 changed files with 34 additions and 0 deletions

View File

@ -0,0 +1,32 @@
{ lib, fetchFromGitHub, stdenvNoCC }:
stdenvNoCC.mkDerivation (self: {
pname = "fanwood";
version = "2011-05-11";
src = fetchFromGitHub {
owner = "theleagueof";
repo = self.pname;
rev = "cbaaed9704e7d37d3dcdbdf0b472e9efd0e39432";
hash = "sha256-OroFhhb4RxPHkx+/8PtFnxs1GQVXMPiYTd+2vnRbIjg=";
};
installPhase = ''
runHook preInstall
install -D -m444 -t $out/share/fonts/opentype $src/*.otf
runHook postInstall
'';
meta = {
description = "A serif based on the work of a famous Czech-American type designer of yesteryear";
longDescription = ''
Based on work of a famous Czech-American type designer of yesteryear. The
package includes roman and italic.
'';
homepage = "https://www.theleagueofmoveabletype.com/fanwood";
license = lib.licenses.ofl;
maintainers = with lib.maintainers; [ minijackson ];
};
})

View File

@ -27079,6 +27079,8 @@ with pkgs;
fantasque-sans-mono = callPackage ../data/fonts/fantasque-sans-mono {};
fanwood = callPackage ../data/fonts/fanwood { };
fira = callPackage ../data/fonts/fira { };
fira-code = callPackage ../data/fonts/fira-code { };