2014-03-10 21:02:46 +00:00
|
|
|
{ stdenv, fetchgit, opencflite, clang, libcxx }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "maloader-0git";
|
|
|
|
|
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/shinh/maloader.git";
|
|
|
|
rev = "5f220393e0b7b9ad0cf1aba0e89df2b42a1f0442";
|
2018-02-01 20:04:56 +00:00
|
|
|
sha256 = "0dd1pn07x1y8pyn5wz8qcl1c1xwghyya4d060m3y9vx5dhv9xmzw";
|
2014-03-10 21:02:46 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
sed -i \
|
|
|
|
-e '/if.*loadLibMac.*mypath/s|mypath|"'"$out/lib/"'"|' \
|
|
|
|
-e 's|libCoreFoundation\.so|${opencflite}/lib/&|' \
|
|
|
|
ld-mac.cc
|
|
|
|
'';
|
|
|
|
|
|
|
|
NIX_CFLAGS_COMPILE = "-I${libcxx}/include/c++/v1";
|
|
|
|
buildInputs = [ clang libcxx ];
|
|
|
|
buildFlags = [ "USE_LIBCXX=1" "release" ];
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
install -vD libmac.so "$out/lib/libmac.so"
|
|
|
|
|
|
|
|
for bin in extract macho2elf ld-mac; do
|
|
|
|
install -vD "$bin" "$out/bin/$bin"
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Mach-O loader for Linux";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/shinh/maloader";
|
2014-03-10 21:02:46 +00:00
|
|
|
license = stdenv.lib.licenses.bsd2;
|
2018-04-15 03:30:16 +01:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2018-09-08 17:42:18 +01:00
|
|
|
broken = true; # 2018-09-08, no succesful build since 2017-08-21
|
2014-03-10 21:02:46 +00:00
|
|
|
};
|
|
|
|
}
|