lol

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

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