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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
623 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, libiconv }:
2015-05-24 01:06:17 +02:00
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 lib; {
homepage = "https://jprs.co.jp/idn/index-e.html";
description = "Provides functionalities about i18n domain name processing";
license = {
fullName = "Open Source Code License version 1.1";
url = "https://jprs.co.jp/idn/idnkit2-OSCL.txt";
};
platforms = platforms.linux;
2015-05-24 01:06:17 +02:00
};
}