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