at 24.11-pre 23 lines 623 B view raw
1{ lib, stdenv, fetchurl, libiconv }: 2 3stdenv.mkDerivation rec { 4 pname = "idnkit"; 5 version = "2.3"; 6 7 src = fetchurl { 8 url = "https://jprs.co.jp/idn/${pname}-${version}.tar.bz2"; 9 sha256 = "0zp9yc84ff5s0g2i6v9yfyza2n2x4xh0kq7hjd3anhh0clbp3l16"; 10 }; 11 12 buildInputs = [ libiconv ]; 13 14 meta = with lib; { 15 homepage = "https://jprs.co.jp/idn/index-e.html"; 16 description = "Provides functionalities about i18n domain name processing"; 17 license = { 18 fullName = "Open Source Code License version 1.1"; 19 url = "https://jprs.co.jp/idn/idnkit2-OSCL.txt"; 20 }; 21 platforms = platforms.linux; 22 }; 23}