evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / fa / fanwood / package.nix
blob789aee6922d146b02b450cf525fc07a43a4399ee
1 { lib, fetchFromGitHub, stdenvNoCC }:
3 stdenvNoCC.mkDerivation {
4   pname = "fanwood";
5   version = "2011-05-11";
7   src = fetchFromGitHub {
8     owner = "theleagueof";
9     repo = "fanwood";
10     rev = "cbaaed9704e7d37d3dcdbdf0b472e9efd0e39432";
11     hash = "sha256-OroFhhb4RxPHkx+/8PtFnxs1GQVXMPiYTd+2vnRbIjg=";
12   };
14   installPhase = ''
15     runHook preInstall
17     install -D -m444 -t $out/share/fonts/opentype $src/*.otf
19     runHook postInstall
20   '';
22   meta = {
23     description = "Serif based on the work of a famous Czech-American type designer of yesteryear";
24     longDescription = ''
25       Based on work of a famous Czech-American type designer of yesteryear. The
26       package includes roman and italic.
27     '';
28     homepage = "https://www.theleagueofmoveabletype.com/fanwood";
29     license = lib.licenses.ofl;
30     maintainers = with lib.maintainers; [ minijackson ];
31   };