mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-01 10:34:16 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
36 lines
909 B
Nix
36 lines
909 B
Nix
{ lib, stdenv, fetchurl, libiconv }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "kakasi";
|
|
version = "2.3.6";
|
|
|
|
buildInputs = lib.optionals stdenv.hostPlatform.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/kakasi-${version}.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
|
|
|
|
}
|