Merge pull request #62241 from dtzWill/feature/national-parkface
national-park-typeface: init at 206464
This commit is contained in:
commit
6e5d5c0f22
24
pkgs/data/fonts/national-park/default.nix
Normal file
24
pkgs/data/fonts/national-park/default.nix
Normal file
@ -0,0 +1,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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -16398,6 +16398,8 @@ in
|
|||||||
|
|
||||||
nanum-gothic-coding = callPackage ../data/fonts/nanum-gothic-coding { };
|
nanum-gothic-coding = callPackage ../data/fonts/nanum-gothic-coding { };
|
||||||
|
|
||||||
|
national-park-typeface = callPackage ../data/fonts/national-park { };
|
||||||
|
|
||||||
nordic = callPackage ../data/themes/nordic { };
|
nordic = callPackage ../data/themes/nordic { };
|
||||||
|
|
||||||
nordic-polar = callPackage ../data/themes/nordic-polar { };
|
nordic-polar = callPackage ../data/themes/nordic-polar { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user