nixpkgs/pkgs/by-name/li/libidn/package.nix
aleksana 571c71e6f7 treewide: migrate packages to pkgs/by-name, take 1
We are migrating packages that meet below requirements:

1. using `callPackage`
2. called path is a directory
3. overriding set is empty (`{ }`)
4. not containing path expressions other than relative path (to
makenixpkgs-vet happy)
5. not referenced by nix files outside of the directory, other
than`pkgs/top-level/all-packages.nix`
6. not referencing nix files outside of the directory
7. not referencing `default.nix` (since it's changed to `package.nix`)
8. `outPath` doesn't change after migration

The tool is here: https://github.com/Aleksanaa/by-name-migrate.
2024-11-09 20:04:51 +08:00

49 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 ];
};
})