nixpkgs/pkgs/development/libraries/idnkit/default.nix

21 lines
522 B
Nix
Raw Normal View History

2015-05-24 01:06:17 +02:00
{ stdenv, fetchurl, libiconv }:
stdenv.mkDerivation rec {
pname = "idnkit";
version = "2.3";
2015-05-24 01:06:17 +02:00
src = fetchurl {
url = "https://jprs.co.jp/idn/${pname}-${version}.tar.bz2";
sha256 = "0zp9yc84ff5s0g2i6v9yfyza2n2x4xh0kq7hjd3anhh0clbp3l16";
2015-05-24 01:06:17 +02:00
};
buildInputs = [ libiconv ];
meta = with stdenv.lib; {
homepage = https://www.nic.ad.jp/ja/idn/idnkit;
description = "Provides functionalities about i18n domain name processing";
2015-05-24 01:06:17 +02:00
license = "idnkit-2 license";
platforms = platforms.linux;
2015-05-24 01:06:17 +02:00
};
}