hackgen-font: init at 2.7.1

This commit is contained in:
natsukium 2022-10-28 10:01:48 +09:00
parent 179706319f
commit d7ce65a977
No known key found for this signature in database
GPG key ID: 9EA45A31DB994C53
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ lib
, fetchzip
}:
fetchzip rec {
pname = "hackgen-font";
version = "2.7.1";
url = "https://github.com/yuru7/HackGen/releases/download/v${version}/HackGen_v${version}.zip";
sha256 = "sha256-UL6U/q2u1UUP31lp0tEnFjzkn6dn8AY6hk5hJhPsOAE=";
postFetch = ''
install -Dm644 $out/*.ttf -t $out/share/fonts/hackgen
shopt -s extglob dotglob
rm -rf $out/!(share)
shopt -u extglob dotglob
'';
meta = with lib; {
description = "A composite font of Hack and GenJyuu-Goghic";
homepage = "https://github.com/yuru7/HackGen";
license = licenses.ofl;
platforms = platforms.all;
maintainers = with maintainers; [ natsukium ];
};
}

View file

@ -26052,6 +26052,8 @@ with pkgs;
hack-font = callPackage ../data/fonts/hack { };
hackgen-font = callPackage ../data/fonts/hackgen { };
helvetica-neue-lt-std = callPackage ../data/fonts/helvetica-neue-lt-std { };
helvum = callPackage ../applications/audio/helvum { };