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

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

32 lines
710 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";
2024-12-08 01:09:59 +00:00
version = "2.9.1";
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";
2024-12-08 01:09:59 +00:00
hash = "sha256-NzmCVFU1JNK0tdJyQBwMzuHxvAbOaQPV2Gbf8EYYKxI=";
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 = "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 ];
};
}