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
34 lines
876 B
Nix
34 lines
876 B
Nix
{ lib, stdenv, fetchurl, libiconv }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "kakasi-2.3.6";
|
|
|
|
buildInputs = stdenv.lib.optional stdenv.isDarwin [ libiconv ];
|
|
|
|
meta = with lib; {
|
|
description = "Kanji Kana Simple Inverter";
|
|
longDescription = ''
|
|
KAKASI is the language processing filter to convert Kanji
|
|
characters to Hiragana, Katakana or Romaji and may be
|
|
helpful to read Japanese documents.
|
|
'';
|
|
homepage = "http://kakasi.namazu.org/";
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.unix;
|
|
};
|
|
|
|
src = fetchurl {
|
|
url = "http://kakasi.namazu.org/stable/${name}.tar.xz";
|
|
sha256 = "1qry3xqb83pjgxp3my8b1sy77z4f0893h73ldrvdaky70cdppr9f";
|
|
};
|
|
|
|
postPatch = ''
|
|
for a in tests/kakasi-* ; do
|
|
substituteInPlace $a \
|
|
--replace "/bin/echo" echo
|
|
done
|
|
'';
|
|
|
|
doCheck = false; # fails 1 of 6 tests
|
|
|
|
}
|