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

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

28 lines
705 B
Nix
Raw Normal View History

2023-01-24 20:17:01 +00:00
{ lib, stdenvNoCC, fetchzip }:
2022-10-28 01:02:53 +00:00
2023-01-24 20:17:01 +00:00
stdenvNoCC.mkDerivation rec {
2022-10-28 01:02:53 +00:00
pname = "hackgen-nf-font";
version = "2.9.0";
2022-10-28 01:02:53 +00:00
2023-01-24 20:17:01 +00:00
src = fetchzip {
url = "https://github.com/yuru7/HackGen/releases/download/v${version}/HackGen_NF_v${version}.zip";
hash = "sha256-Lh4WQJjeP4JuR8jSXpRNSrjRsNPmNXSx5AItNYMJL2A=";
2023-01-24 20:17:01 +00:00
};
installPhase = ''
runHook preInstall
install -Dm644 *.ttf -t $out/share/fonts/hackgen-nf
runHook postInstall
2022-10-28 01:02:53 +00:00
'';
meta = with lib; {
description = "A composite font of Hack, GenJyuu-Gothic and nerd-fonts";
homepage = "https://github.com/yuru7/HackGen";
license = licenses.ofl;
platforms = platforms.all;
maintainers = with maintainers; [ natsukium ];
};
}