Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
37 lines
885 B
Nix
37 lines
885 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
stdenvNoCC,
|
|
}:
|
|
|
|
stdenvNoCC.mkDerivation {
|
|
pname = "fanwood";
|
|
version = "2011-05-11";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "theleagueof";
|
|
repo = "fanwood";
|
|
rev = "cbaaed9704e7d37d3dcdbdf0b472e9efd0e39432";
|
|
hash = "sha256-OroFhhb4RxPHkx+/8PtFnxs1GQVXMPiYTd+2vnRbIjg=";
|
|
};
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
install -D -m444 -t $out/share/fonts/opentype $src/*.otf
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = {
|
|
description = "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 ];
|
|
};
|
|
}
|