This repository has been archived by the owner on May 15, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #14 from h-be/fix-dylibs
dylibs couldn't be signed so were breaking macos gatekeeper
- Loading branch information
Showing
2 changed files
with
22 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -71,6 +71,23 @@ let | |
rm $HOLOCHAIN | ||
''); | ||
|
||
macos-fix-dylibs = (pkgs.writeShellScriptBin "acorn-macos-fix-dylibs" '' | ||
set -euxo pipefail | ||
echo 'fixing the dynamic linking of hc and holochain' | ||
echo 'based on: otool -L hc' | ||
install_name_tool -change /nix/store/qjf3nf4qa8q62giagjwdmdbjqni983km-Libsystem-osx-10.12.6/lib/libSystem.B.dylib /usr/lib/libSystem.B.dylib hc | ||
install_name_tool -change /nix/store/qjf3nf4qa8q62giagjwdmdbjqni983km-Libsystem-osx-10.12.6/lib/libresolv.9.dylib /usr/lib/libresolv.9.dylib hc | ||
# note this is a slight hack, with unforeseen consequences? | ||
# because its a different lib? libiconv.dylib > libiconv.2.dylib | ||
install_name_tool -change /nix/store/cib1v4zhizcjwkr96753n87ssm3nsfkm-libiconv-osx-10.12.6/lib/libiconv.dylib /usr/lib/libiconv.2.dylib hc | ||
echo 'based on: otool -L holochain' | ||
install_name_tool -change /nix/store/qjf3nf4qa8q62giagjwdmdbjqni983km-Libsystem-osx-10.12.6/lib/libSystem.B.dylib /usr/lib/libSystem.B.dylib holochain | ||
install_name_tool -change /nix/store/qjf3nf4qa8q62giagjwdmdbjqni983km-Libsystem-osx-10.12.6/lib/libresolv.9.dylib /usr/lib/libresolv.9.dylib holochain | ||
# note this is a slight hack, with unforeseen consequences? | ||
# because its a different lib? libiconv.dylib > libiconv.2.dylib | ||
install_name_tool -change /nix/store/cib1v4zhizcjwkr96753n87ssm3nsfkm-libiconv-osx-10.12.6/lib/libiconv.dylib /usr/lib/libiconv.2.dylib holochain | ||
''); | ||
|
||
build-linux = (pkgs.writeShellScriptBin "acorn-build-linux" '' | ||
${pre-build}/bin/acorn-pre-build | ||
acorn_platform=''${1:-linux} | ||
|
@@ -83,12 +100,14 @@ let | |
build-mac = (pkgs.writeShellScriptBin "acorn-build-mac" '' | ||
${pre-build}/bin/acorn-pre-build | ||
${fetch-bins}/bin/acorn-fetch-bins apple-darwin | ||
${macos-fix-dylibs}/bin/acorn-macos-fix-dylibs | ||
electron-packager . Acorn --platform=darwin --arch=x64 --overwrite --prune=true --icon=\"ui/logo/[email protected]\" --osx-sign.hardenedRuntime=true --osx-sign.gatekeeperAssess=false --osx-sign.entitlements=entitlements.mac.plist --osx-sign.entitlements-inherit=entitlements.mac.plist --osx-sign.type=distribution --osx-sign.identity=\"$APPLE_DEV_IDENTITY\" --osx-notarize.apple-id=\"$APPLE_ID_EMAIL\" --osx-notarize.apple-id-password=\"$APPLE_ID_PASSWORD\" | ||
''); | ||
|
||
build-mac-unsigned = (pkgs.writeShellScriptBin "acorn-build-mac-unsigned" '' | ||
${pre-build}/bin/acorn-pre-build | ||
${fetch-bins}/bin/acorn-fetch-bins apple-darwin | ||
${macos-fix-dylibs}/bin/acorn-macos-fix-dylibs | ||
electron-packager . Acorn --platform=darwin --arch=x64 --overwrite --prune=true --icon=\"ui/logo/[email protected]\" | ||
''); | ||
|
||
|
@@ -103,6 +122,8 @@ in | |
bundle-ui | ||
clean | ||
reset | ||
fetch-bins | ||
macos-fix-dylibs | ||
build-linux | ||
build-mac | ||
build-mac-unsigned | ||
|