mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 21:33:03 +03:00
libiconv: disable stripping when cross-compiling
This commit is contained in:
parent
ea304762fe
commit
e80ec28da1
@ -14,6 +14,12 @@ stdenv.mkDerivation rec {
|
|||||||
# will actually use.
|
# will actually use.
|
||||||
configureFlags = stdenv.lib.optional stdenv.isCygwin [ "--enable-static" ];
|
configureFlags = stdenv.lib.optional stdenv.isCygwin [ "--enable-static" ];
|
||||||
|
|
||||||
|
crossAttrs = {
|
||||||
|
# Disable stripping to avoid "libiconv.a: Archive has no index" (MinGW).
|
||||||
|
dontStrip = true;
|
||||||
|
dontCrossStrip = true;
|
||||||
|
};
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "GNU libiconv, an iconv(3) implementation";
|
description = "GNU libiconv, an iconv(3) implementation";
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user