2015-11-08 17:58:37 +00:00
|
|
|
{ fetchurl, stdenv, libiconv }:
|
2009-03-07 11:47:40 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-07-20 21:44:27 +01:00
|
|
|
name = "libidn-1.33";
|
2009-03-07 11:47:40 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnu/libidn/${name}.tar.gz";
|
2016-07-20 21:44:27 +01:00
|
|
|
sha256 = "068fjg2arlppjqqpzd714n1lf6gxkpac9v5yyvp1qwmv6nvam9s4";
|
2009-03-07 11:47:40 +00:00
|
|
|
};
|
|
|
|
|
2016-09-01 10:07:23 +01:00
|
|
|
outputs = [ "bin" "dev" "out" "info" "devdoc" ];
|
2015-10-07 21:11:08 +01:00
|
|
|
|
2017-11-11 18:09:41 +00:00
|
|
|
# broken with gcc-7
|
|
|
|
#doCheck = (stdenv.buildPlatform == stdenv.hostPlatform) && !stdenv.isDarwin;
|
2009-03-07 11:47:40 +00:00
|
|
|
|
2016-03-28 21:20:38 +01:00
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
|
2015-11-08 17:58:37 +00:00
|
|
|
buildInputs = stdenv.lib.optional stdenv.isDarwin libiconv;
|
|
|
|
|
2009-03-07 11:47:40 +00:00
|
|
|
meta = {
|
|
|
|
homepage = http://www.gnu.org/software/libidn/;
|
2014-08-24 15:21:08 +01:00
|
|
|
description = "Library for internationalized domain names";
|
2009-03-07 11:47:40 +00:00
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
GNU Libidn is a fully documented implementation of the
|
|
|
|
Stringprep, Punycode and IDNA specifications. Libidn's purpose
|
|
|
|
is to encode and decode internationalized domain names. The
|
|
|
|
native C, C\# and Java libraries are available under the GNU
|
|
|
|
Lesser General Public License version 2.1 or later.
|
|
|
|
|
|
|
|
The library contains a generic Stringprep implementation.
|
|
|
|
Profiles for Nameprep, iSCSI, SASL, XMPP and Kerberos V5 are
|
|
|
|
included. Punycode and ASCII Compatible Encoding (ACE) via IDNA
|
|
|
|
are supported. A mechanism to define Top-Level Domain (TLD)
|
|
|
|
specific validation tables, and to compare strings against those
|
|
|
|
tables, is included. Default tables for some TLDs are also
|
|
|
|
included.
|
|
|
|
'';
|
|
|
|
|
2014-08-29 16:28:20 +01:00
|
|
|
repositories.git = git://git.savannah.gnu.org/libidn.git;
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.lgpl2Plus;
|
2010-01-13 08:51:18 +00:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
2013-08-16 22:44:33 +01:00
|
|
|
maintainers = [ ];
|
2009-03-07 11:47:40 +00:00
|
|
|
};
|
2007-11-11 16:36:11 +00:00
|
|
|
}
|