nixpkgs/pkgs/by-name/ji/jigmo/package.nix

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

28 lines
663 B
Nix
Raw Normal View History

2024-03-09 05:20:00 +01:00
{ lib, stdenvNoCC, fetchzip }:
stdenvNoCC.mkDerivation rec {
pname = "jigmo";
version = "20230816";
src = fetchzip {
url = "https://kamichikoichi.github.io/jigmo/Jigmo-${version}.zip";
hash = "sha256-wBec7IiUneqCEyY704Wi6F6WG0Z1KK7gBGcJhRjrRDc=";
};
installPhase = ''
runHook preInstall
install -Dm644 *.ttf -t $out/share/fonts/truetype/
runHook postInstall
'';
meta = with lib; {
description = "Japanese Kanji font set which is the official successor to Hanazono Mincho";
homepage = "https://kamichikoichi.github.io/jigmo/";
license = licenses.cc0;
2024-04-24 06:20:00 +02:00
maintainers = [ ];
2024-03-09 05:20:00 +01:00
platforms = platforms.all;
};
}