2018-07-21 01:44:44 +01:00
|
|
|
{ fetchurl, stdenv, libiconv, libunistring, help2man, buildPackages }:
|
2017-02-12 01:31:21 +00:00
|
|
|
|
2020-06-26 21:44:45 +01:00
|
|
|
# Note: this package is used for bootstrapping fetchurl, and thus
|
|
|
|
# cannot use fetchpatch! All mutable patches (generated by GitHub or
|
|
|
|
# cgit) that are needed here should be included directly in Nixpkgs as
|
|
|
|
# files.
|
|
|
|
|
2017-02-12 01:31:21 +00:00
|
|
|
with stdenv.lib;
|
2017-02-06 12:01:55 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "libidn2";
|
2019-11-28 06:41:45 +00:00
|
|
|
version = "2.3.0";
|
2017-02-06 12:01:55 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "mirror://gnu/gnu/libidn/${pname}-${version}.tar.gz";
|
2019-11-28 06:41:45 +00:00
|
|
|
sha256 = "1ddqr80kmz4l8g3r3gf7bmf2v29fgivlc2bgxfiscjg2sarivjz1";
|
2017-02-06 12:01:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
outputs = [ "bin" "dev" "out" "info" "devdoc" ];
|
|
|
|
|
2017-02-12 01:31:21 +00:00
|
|
|
patches = optional stdenv.isDarwin ./fix-error-darwin.patch;
|
|
|
|
|
2018-03-30 00:07:06 +01:00
|
|
|
nativeBuildInputs = optional stdenv.isDarwin help2man;
|
2018-02-25 13:20:45 +00:00
|
|
|
buildInputs = [ libunistring ] ++ optional stdenv.isDarwin libiconv;
|
|
|
|
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
2017-02-06 12:01:55 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = "https://www.gnu.org/software/libidn/#libidn2";
|
|
|
|
description = "Free software implementation of IDNA2008 and TR46";
|
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
Libidn2 is believed to be a complete IDNA2008 and TR46 implementation,
|
|
|
|
but has yet to be as extensively used as the IDNA2003 Libidn library.
|
|
|
|
|
|
|
|
The installed C library libidn2 is dual-licensed under LGPLv3+|GPLv2+,
|
|
|
|
while the rest of the package is GPLv3+. See the file COPYING for
|
|
|
|
detailed information.
|
|
|
|
'';
|
|
|
|
|
2020-04-01 02:11:51 +01:00
|
|
|
repositories.git = "https://gitlab.com/jas/libidn2";
|
2017-02-06 12:01:55 +00:00
|
|
|
license = with stdenv.lib.licenses; [ lgpl3Plus gpl2Plus gpl3Plus ];
|
|
|
|
platforms = stdenv.lib.platforms.all;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ fpletz ];
|
|
|
|
};
|
|
|
|
}
|