nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at devShellTools-shell 31 lines 670 B view raw
1{ 2 lib, 3 stdenvNoCC, 4 fetchzip, 5}: 6 7stdenvNoCC.mkDerivation rec { 8 pname = "jigmo"; 9 version = "20230816"; 10 11 src = fetchzip { 12 url = "https://kamichikoichi.github.io/jigmo/Jigmo-${version}.zip"; 13 hash = "sha256-wBec7IiUneqCEyY704Wi6F6WG0Z1KK7gBGcJhRjrRDc="; 14 }; 15 16 installPhase = '' 17 runHook preInstall 18 19 install -Dm644 *.ttf -t $out/share/fonts/truetype/ 20 21 runHook postInstall 22 ''; 23 24 meta = with lib; { 25 description = "Japanese Kanji font set which is the official successor to Hanazono Mincho"; 26 homepage = "https://kamichikoichi.github.io/jigmo/"; 27 license = licenses.cc0; 28 maintainers = [ ]; 29 platforms = platforms.all; 30 }; 31}