mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
jost: init at 3.3
This commit is contained in:
parent
80b51d983a
commit
8e58a54b09
2 changed files with 24 additions and 0 deletions
22
pkgs/data/fonts/jost/default.nix
Normal file
22
pkgs/data/fonts/jost/default.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
{stdenv, fetchzip}:
|
||||
|
||||
let
|
||||
version = "3.3";
|
||||
in fetchzip {
|
||||
name = "jost-${version}";
|
||||
url = "https://github.com/indestructible-type/Jost/releases/download/${version}/Jost.zip";
|
||||
|
||||
postFetch = ''
|
||||
mkdir -p $out/share/fonts
|
||||
unzip -j $downloadedFile \*.otf -d $out/share/fonts/opentype
|
||||
'';
|
||||
|
||||
sha256="00nrhs3aif2hc4yhjhbn9ywmydl2w0g0hv5m5is8gv7wx8yi2j9z";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://github.com/indestructible-type/Jost;
|
||||
description = "A sans serif font by Indestructible Type";
|
||||
license = licenses.ofl;
|
||||
maintainers = [ maintainers.ar1a ];
|
||||
};
|
||||
}
|
|
@ -16330,6 +16330,8 @@ in
|
|||
|
||||
iwona = callPackage ../data/fonts/iwona { };
|
||||
|
||||
jost = callPackage ../data/fonts/jost { };
|
||||
|
||||
junicode = callPackage ../data/fonts/junicode { };
|
||||
|
||||
kanji-stroke-order-font = callPackage ../data/fonts/kanji-stroke-order-font {};
|
||||
|
|
Loading…
Reference in a new issue