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

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

28 lines
684 B
Nix
Raw Normal View History

2023-01-24 20:17:01 +00:00
{ lib, stdenvNoCC, fetchzip }:
2022-10-28 01:01:48 +00:00
2023-01-24 20:17:01 +00:00
stdenvNoCC.mkDerivation rec {
2022-10-28 01:01:48 +00:00
pname = "hackgen-font";
2022-12-30 02:01:01 +00:00
version = "2.8.0";
2022-10-28 01:01:48 +00:00
2023-01-24 20:17:01 +00:00
src = fetchzip {
url = "https://github.com/yuru7/HackGen/releases/download/v${version}/HackGen_v${version}.zip";
hash = "sha256-vKbiM3QUryey0m6oilO0lT6+efkCTLCwdtPF7PinkmU=";
};
installPhase = ''
runHook preInstall
install -Dm644 *.ttf -t $out/share/fonts/hackgen
runHook postInstall
2022-10-28 01:01:48 +00:00
'';
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 ];
};
}