blob: 92e68970b69ca5bd205d3a8ed0571c0173577497 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
{
lib,
stdenv,
fetchurl,
google-fonts,
migu,
fontforge,
which,
}:
stdenv.mkDerivation rec {
pname = "ricty";
version = "4.1.1";
src = fetchurl {
url = "https://rictyfonts.github.io/files/ricty_generator-${version}.sh";
sha256 = "03fngb8f5hl7ifigdm5yljhs4z2x80cq8y8kna86d07ghknhzgw6";
};
unpackPhase = ''
install -m 0770 $src ricty_generator.sh
'';
patchPhase = ''
sed -i 's/fonts_directories=".*"/fonts_directories="$inconsolata $migu"/' ricty_generator.sh
'';
buildInputs = [
google-fonts
migu
fontforge
which
];
buildPhase = ''
inconsolata=${google-fonts} migu=${migu} ./ricty_generator.sh auto
'';
installPhase = ''
install -m644 --target $out/share/fonts/truetype/ricty -D Ricty-*.ttf
'';
meta = {
description = "High-quality Japanese font based on Inconsolata and Migu 1M";
homepage = "https://rictyfonts.github.io";
license = lib.licenses.unfree;
maintainers = [ lib.maintainers.mikoim ];
};
}
|