about summary refs log tree commit diff
path: root/pkgs/tools/text/nkf/default.nix
blob: 31d58fbccc37c5cf0bc81fef77e2c241737ea8aa (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 {
  name = "nkf-${version}";
  version = "2.1.3";

  src = fetchurl {
    url = "mirror://sourceforgejp/nkf/59912/${name}.tar.gz";
    sha256 = "8cb430ae69a1ad58b522eb4927b337b5b420bbaeb69df255919019dc64b72fc2";
  };

  makeFlags = "prefix=\${out}";

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