about summary refs log tree commit diff
path: root/nixpkgs/pkgs/data/fonts/national-park/default.nix
blob: 8ed251de53d510fea4caf2040e624a0af6fca158 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ lib, fetchzip }:

let
  pname = "national-park-typeface";
  version = "206464";
in fetchzip {
  name = "${pname}-${version}";
  url = "https://files.cargocollective.com/c${version}/NationalPark.zip";

  postFetch = ''
    mkdir -p $out/share/fonts
    unzip -j $downloadedFile National\*.otf -d $out/share/fonts/opentype/
  '';

  sha256 = "044gh4xcasp8i9ny6z4nmns1am2pk5krc4ann2afq35v9bnl2q5d";

  meta = with lib; {
    description = ''Typeface designed to mimic the national park service
    signs that are carved using a router bit'';
    homepage = "https://nationalparktypeface.com/";
    license = licenses.ofl;
    maintainers = with maintainers; [ dtzWill ];
  };
}