nixpkgs/pkgs/data/fonts/hackgen/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
667 B
Nix
Raw Normal View History

2022-10-28 04:01:48 +03:00
{ lib
, fetchzip
}:
fetchzip rec {
pname = "hackgen-font";
2022-12-30 05:01:01 +03:00
version = "2.8.0";
2022-10-28 04:01:48 +03:00
url = "https://github.com/yuru7/HackGen/releases/download/v${version}/HackGen_v${version}.zip";
2022-12-30 05:01:01 +03:00
sha256 = "sha256-TLqns6ulovHRKoLHxxwKpj6SqfCq5UDVBf7gUASCGK4=";
2022-10-28 04:01:48 +03:00
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 ];
};
}