summary refs log tree commit diff
path: root/pkgs/tools/text/nkf/default.nix
blob: 8a314d448439ae446074bded5c5931fed1d024f6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv, fetchurl }:

stdenv.mkDerivation rec {
  pname = "nkf";
  version = "2.1.5";

  src = fetchurl {
    url = "mirror://osdn/nkf/70406/${pname}-${version}.tar.gz";
    sha256 = "0i5dbcb9aipwr8ym4mhvgf1in3frl6y8h8x96cprz9s7b11xz9yi";
  };

  makeFlags = [ "prefix=$(out)" ];

  meta = {
    description = "Tool for converting encoding of Japanese text";
    homepage = "https://nkf.osdn.jp/";
    license = stdenv.lib.licenses.zlib;
    platforms = stdenv.lib.platforms.unix;
    maintainers = [ stdenv.lib.maintainers.auntie ];
  };
}