kanji-stroke-order-font: 4.004 -> 4.005

+8 -10
+8 -10
pkgs/by-name/ka/kanji-stroke-order-font/package.nix
··· 6 6 7 7 let 8 8 font = "kanji-stroke-order"; 9 - version = "4.004"; 10 9 in 11 10 stdenv.mkDerivation { 12 11 pname = "${font}-font"; 13 - inherit version; 12 + version = "4.005"; 14 13 15 14 src = fetchzip { 16 15 # https://github.com/NixOS/nixpkgs/issues/60157 17 - url = "https://drive.google.com/uc?export=download&id=1snpD-IQmT6fGGQjEePHdDzE2aiwuKrz4#${font}.zip"; 18 - hash = "sha256-wQpurDS6APnpNMbMHofwW/UKeBF8FXeiCVx4wAOeRoE="; 19 - stripRoot = false; 16 + url = "https://drive.google.com/uc?export=download&id=1DKZEYA3PJ8ulLnjYDP5bxzJ3SWi59ghr#${font}.zip"; 17 + hash = "sha256-6mw72eoRIGzG2IoVnPo1G0i2Z2Ot8Q/WjaJ8tNDQbMk="; 20 18 }; 21 19 22 20 installPhase = '' ··· 29 27 runHook postInstall 30 28 ''; 31 29 32 - meta = with lib; { 30 + meta = { 33 31 description = "Font containing stroke order diagrams for over 6500 kanji, 180 kana and other characters"; 34 - homepage = "https://www.nihilist.org.uk/"; 32 + homepage = "https://www.kanji.uk/"; 35 33 36 - license = [ licenses.bsd3 ]; 37 - maintainers = with maintainers; [ 34 + license = [ lib.licenses.bsd3 ]; 35 + maintainers = with lib.maintainers; [ 38 36 ptrhlm 39 37 stephen-huan 40 38 ]; 41 - platforms = platforms.all; 39 + platforms = lib.platforms.all; 42 40 }; 43 41 }