2021-01-21 18:00:13 +01:00
|
|
|
{ lib, stdenv, fetchurl, libiconv }:
|
2015-05-24 01:06:17 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "idnkit";
|
2018-03-30 02:22:45 +02:00
|
|
|
version = "2.3";
|
2015-05-24 01:06:17 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 14:41:18 +02:00
|
|
|
url = "https://jprs.co.jp/idn/${pname}-${version}.tar.bz2";
|
2018-03-30 02:22:45 +02:00
|
|
|
sha256 = "0zp9yc84ff5s0g2i6v9yfyza2n2x4xh0kq7hjd3anhh0clbp3l16";
|
2015-05-24 01:06:17 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ libiconv ];
|
|
|
|
|
2021-01-21 18:00:13 +01:00
|
|
|
meta = with lib; {
|
2022-02-06 14:42:04 +01:00
|
|
|
homepage = "https://jprs.co.jp/idn/index-e.html";
|
2016-06-20 12:53:46 +02:00
|
|
|
description = "Provides functionalities about i18n domain name processing";
|
2022-02-06 14:42:04 +01:00
|
|
|
license = {
|
|
|
|
fullName = "Open Source Code License version 1.1";
|
|
|
|
url = "https://jprs.co.jp/idn/idnkit2-OSCL.txt";
|
|
|
|
};
|
2017-09-22 20:03:17 +02:00
|
|
|
platforms = platforms.linux;
|
2015-05-24 01:06:17 +02:00
|
|
|
};
|
|
|
|
}
|