2015-05-24 00:06:17 +01:00
|
|
|
{ stdenv, fetchurl, libiconv }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-03-30 01:22:45 +01:00
|
|
|
name = "idnkit-${version}";
|
|
|
|
version = "2.3";
|
2015-05-24 00:06:17 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-03-30 01:22:45 +01:00
|
|
|
url = "https://jprs.co.jp/idn/${name}.tar.bz2";
|
|
|
|
sha256 = "0zp9yc84ff5s0g2i6v9yfyza2n2x4xh0kq7hjd3anhh0clbp3l16";
|
2015-05-24 00:06:17 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ libiconv ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://www.nic.ad.jp/ja/idn/idnkit;
|
2016-06-20 11:53:46 +01:00
|
|
|
description = "Provides functionalities about i18n domain name processing";
|
2015-05-24 00:06:17 +01:00
|
|
|
license = "idnkit-2 license";
|
2017-09-22 19:03:17 +01:00
|
|
|
platforms = platforms.linux;
|
2015-05-24 00:06:17 +01:00
|
|
|
maintainers = with maintainers; [ wkennington ];
|
|
|
|
};
|
|
|
|
}
|