mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-18 02:44:30 +00:00
4f0dadbf38
After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
59 lines
1.6 KiB
Nix
59 lines
1.6 KiB
Nix
{
|
|
fetchurl,
|
|
lib,
|
|
stdenv,
|
|
libiconv,
|
|
testers,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "libidn";
|
|
version = "1.42";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnu/libidn/libidn-${finalAttrs.version}.tar.gz";
|
|
sha256 = "sha256-1sGZ3NgG5P4nk2DLSwg0mg05Vg7VSP/RzK3ajN7LRyM=";
|
|
};
|
|
|
|
outputs = [
|
|
"bin"
|
|
"dev"
|
|
"out"
|
|
"info"
|
|
"devdoc"
|
|
];
|
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
buildInputs = lib.optional stdenv.hostPlatform.isDarwin libiconv;
|
|
|
|
passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage;
|
|
|
|
meta = {
|
|
homepage = "https://www.gnu.org/software/libidn/";
|
|
description = "Library for internationalized domain names";
|
|
|
|
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.
|
|
'';
|
|
|
|
mainProgram = "idn";
|
|
license = lib.licenses.lgpl2Plus;
|
|
pkgConfigModules = [ "libidn" ];
|
|
platforms = lib.platforms.all;
|
|
maintainers = with lib.maintainers; [ lsix ];
|
|
};
|
|
})
|