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

stdenv.mkDerivation rec {
  name = "idnkit-${version}";
  version = "2.3";

  src = fetchurl {
    url = "https://jprs.co.jp/idn/${name}.tar.bz2";
    sha256 = "0zp9yc84ff5s0g2i6v9yfyza2n2x4xh0kq7hjd3anhh0clbp3l16";
  };

  buildInputs = [ libiconv ];

  meta = with stdenv.lib; {
    homepage = https://www.nic.ad.jp/ja/idn/idnkit;
    description = "Provides functionalities about i18n domain name processing";
    license = "idnkit-2 license";
    platforms = platforms.linux;
  };
}