icoutils: fix build with newer ld64
Since version 819.6, ld64 no longer supports static archives embedded in static archives.
This commit is contained in:
parent
6421226aa5
commit
d281f7e4f4
1 changed files with 11 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
||||||
{ lib, stdenv, fetchurl, libpng, perl, perlPackages, makeWrapper }:
|
{ lib, stdenv, fetchurl, fetchpatch, autoreconfHook, libpng, perl, perlPackages, makeWrapper }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "icoutils";
|
pname = "icoutils";
|
||||||
|
@ -9,7 +9,15 @@ stdenv.mkDerivation rec {
|
||||||
sha256 = "1q66cksms4l62y0wizb8vfavhmf7kyfgcfkynil3n99s0hny1aqp";
|
sha256 = "1q66cksms4l62y0wizb8vfavhmf7kyfgcfkynil3n99s0hny1aqp";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ makeWrapper ];
|
patches = [
|
||||||
|
# Fixes a linker failure with newer versions of ld64 due to not supporting nested archives.
|
||||||
|
(fetchpatch {
|
||||||
|
url = "https://git.savannah.nongnu.org/cgit/icoutils.git/patch/?id=aa3572119bfe34484025f37dbbc4d5070f735908";
|
||||||
|
hash = "sha256-4YCI+SYT2bCBNegkpN5jcfi6gOeec65TmCABr98HHB4=";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
|
nativeBuildInputs = [ autoreconfHook makeWrapper ];
|
||||||
buildInputs = [ libpng perl ];
|
buildInputs = [ libpng perl ];
|
||||||
propagatedBuildInputs = [ perlPackages.LWP ];
|
propagatedBuildInputs = [ perlPackages.LWP ];
|
||||||
|
|
||||||
|
@ -17,7 +25,7 @@ stdenv.mkDerivation rec {
|
||||||
# upgrades to a newer SDK.
|
# upgrades to a newer SDK.
|
||||||
env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-DTARGET_OS_IPHONE=0";
|
env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-DTARGET_OS_IPHONE=0";
|
||||||
|
|
||||||
patchPhase = ''
|
postPatch = ''
|
||||||
patchShebangs extresso/extresso
|
patchShebangs extresso/extresso
|
||||||
patchShebangs extresso/extresso.in
|
patchShebangs extresso/extresso.in
|
||||||
patchShebangs extresso/genresscript
|
patchShebangs extresso/genresscript
|
||||||
|
|
Loading…
Reference in a new issue