mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
jigmo: init at 20230816
This commit is contained in:
parent
8a16f9a618
commit
836270328f
27
pkgs/by-name/ji/jigmo/package.nix
Normal file
27
pkgs/by-name/ji/jigmo/package.nix
Normal file
@ -0,0 +1,27 @@
|
||||
{ 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;
|
||||
maintainers = [ maintainers.marsam ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user