at 18.09-beta 21 lines 573 B view raw
1{ stdenv, fetchurl, libiconv }: 2 3stdenv.mkDerivation rec { 4 name = "idnkit-${version}"; 5 version = "2.3"; 6 7 src = fetchurl { 8 url = "https://jprs.co.jp/idn/${name}.tar.bz2"; 9 sha256 = "0zp9yc84ff5s0g2i6v9yfyza2n2x4xh0kq7hjd3anhh0clbp3l16"; 10 }; 11 12 buildInputs = [ libiconv ]; 13 14 meta = with stdenv.lib; { 15 homepage = https://www.nic.ad.jp/ja/idn/idnkit; 16 description = "Provides functionalities about i18n domain name processing"; 17 license = "idnkit-2 license"; 18 platforms = platforms.linux; 19 maintainers = with maintainers; [ wkennington ]; 20 }; 21}