2110c0bd30
Also fix some setup hooks that unnecessarily used environment hooks, which revolted in the same variable being modified too many times.
52 lines
1.6 KiB
Nix
52 lines
1.6 KiB
Nix
{ fetchurl, stdenv, lib
|
|
, buildPlatform, hostPlatform
|
|
, enableStatic ? stdenv.hostPlatform.useAndroidPrebuilt
|
|
}:
|
|
|
|
# assert !stdenv.isLinux || hostPlatform != buildPlatform; # TODO: improve on cross
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libiconv-${version}";
|
|
version = "1.15";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnu/libiconv/${name}.tar.gz";
|
|
sha256 = "0y1ij745r4p48mxq84rax40p10ln7fc7m243p8k8sia519i3dxfc";
|
|
};
|
|
|
|
setupHooks = [
|
|
../../../build-support/setup-hooks/role.bash
|
|
./setup-hook.sh
|
|
];
|
|
|
|
postPatch =
|
|
lib.optionalString ((hostPlatform != buildPlatform && hostPlatform.libc == "msvcrt") || stdenv.cc.nativeLibc)
|
|
''
|
|
sed '/^_GL_WARN_ON_USE (gets/d' -i srclib/stdio.in.h
|
|
'';
|
|
|
|
configureFlags = lib.optional stdenv.isFreeBSD "--with-pic"
|
|
++ lib.optional enableStatic "--enable-static";
|
|
|
|
meta = {
|
|
description = "An iconv(3) implementation";
|
|
|
|
longDescription = ''
|
|
Some programs, like mailers and web browsers, must be able to convert
|
|
between a given text encoding and the user's encoding. Other programs
|
|
internally store strings in Unicode, to facilitate internal processing,
|
|
and need to convert between internal string representation (Unicode)
|
|
and external string representation (a traditional encoding) when they
|
|
are doing I/O. GNU libiconv is a conversion library for both kinds of
|
|
applications.
|
|
'';
|
|
|
|
homepage = http://www.gnu.org/software/libiconv/;
|
|
license = lib.licenses.lgpl2Plus;
|
|
|
|
maintainers = [ ];
|
|
|
|
# This library is not needed on GNU platforms.
|
|
hydraPlatforms = with lib.platforms; cygwin ++ darwin ++ freebsd;
|
|
};
|
|
}
|