4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
38 lines
1011 B
Nix
38 lines
1011 B
Nix
{ lib, stdenv, fetchurl, google-fonts, migu, fontforge, which }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ricty";
|
|
version = "4.1.1";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.yusa.lab.uec.ac.jp/~yusa/ricty/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 = with lib; {
|
|
description = "A high-quality Japanese font based on Inconsolata and Migu 1M";
|
|
homepage = "http://www.yusa.lab.uec.ac.jp/~yusa/ricty.html";
|
|
license = licenses.unfree;
|
|
maintainers = [ maintainers.mikoim ];
|
|
};
|
|
}
|
|
|