Skip to content

Commit 8b3b754

Browse files
committed
Merge remote-tracking branch 'origin/feature/ddw-745-arm-support' into feature/ddw-745-arm-support
# Conflicts: # nix/cardano-bridge.nix
2 parents 1ef3462 + fc2584a commit 8b3b754

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

CHANGELOG.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
### Features
1010

1111
- Added support for Ledger Nano S Plus ([PR 2975](https://github.com/input-output-hk/daedalus/pull/2975))
12+
- Support of Apple AArch64 chip ([PR 2684](https://github.com/input-output-hk/daedalus/pull/2684))
1213

1314
### Chores
1415

@@ -162,10 +163,6 @@
162163
- Updated vulnerable dependencies ([PR 2769](https://github.com/input-output-hk/daedalus/pull/2769))
163164
- Updated CWB and Cardano Node ([PR 2799](https://github.com/input-output-hk/daedalus/pull/2799))
164165

165-
### Features
166-
167-
- Support of apple aarch64 chip ([PR 2684](https://github.com/input-output-hk/daedalus/pull/2684))
168-
169166
## 4.6.0
170167

171168
### Features

default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ let
8989
inherit (walletPackages) cardano-address;
9090
inherit (walletPackages) mock-token-metadata-server;
9191
cardano-shell = import self.sources.cardano-shell { inherit system; crossSystem = crossSystem shellPkgs.lib; };
92-
local-cluster = if cluster == "selfnode" then (import self.sources.cardano-wallet { inherit system; gitrev = self.sources.cardano-wallet.rev; crossSystem = crossSystem walletPkgs.lib; }).local-cluster else null;
92+
local-cluster = if cluster == "selfnode" then walletPackages.local-cluster else null;
9393
cardano-node-cluster = let
9494
# Test wallets with known mnemonics
9595
walletTestGenesisYaml = (self.sources.cardano-wallet + "/lib/shelley/test/data/cardano-node-shelley/genesis.yaml");

installers/common/MacInstaller.hs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -157,11 +157,14 @@ sign_cmd "$ABS_PATH/Contents/Resources/app/node_modules/keccak/prebuilds/darwin-
157157
sign_cmd "$ABS_PATH/Contents/Resources/app/node_modules/blake-hash/prebuilds/darwin-x64/node.napi.node"
158158
sign_cmd "$ABS_PATH/Contents/Resources/app/node_modules/blake-hash/prebuilds/darwin-arm64/node.napi.node"
159159
sign_cmd "$ABS_PATH/Contents/Resources/app/node_modules/blake-hash/bin/darwin-x64-"*"/blake-hash.node"
160+
sign_cmd "$ABS_PATH/Contents/Resources/app/node_modules/blake-hash/bin/darwin-arm64-"*"/blake-hash.node"
160161
sign_cmd "$ABS_PATH/Contents/Resources/app/node_modules/blake-hash/build/Release/addon.node"
161162
sign_cmd "$ABS_PATH/Contents/Resources/app/node_modules/blake2/build/Release/binding.node"
162163
sign_cmd "$ABS_PATH/Contents/Resources/app/node_modules/blake2/bin/darwin-x64-"*"/blake2.node"
164+
sign_cmd "$ABS_PATH/Contents/Resources/app/node_modules/blake2/bin/darwin-arm64-"*"/blake2.node"
163165
sign_cmd "$ABS_PATH/Contents/Resources/app/node_modules/tiny-secp256k1/build/Release/secp256k1.node"
164166
sign_cmd "$ABS_PATH/Contents/Resources/app/node_modules/tiny-secp256k1/bin/darwin-x64-"*"/tiny-secp256k1.node"
167+
sign_cmd "$ABS_PATH/Contents/Resources/app/node_modules/tiny-secp256k1/bin/darwin-arm64-"*"/tiny-secp256k1.node"
165168

166169
# Sign the whole component deeply
167170
sign_cmd "$ABS_PATH"

nix/cardano-bridge.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{ target, runCommandCC, cardano-wallet, cardano-node, cardano-shell, cardano-cli, cardano-address, lib, local-cluster ? null, darwin, mock-token-metadata-server }:
1+
{ target, runCommandCC, cardano-wallet, cardano-node, cardano-shell, cardano-cli, cardano-address, lib, local-cluster ? null, mock-token-metadata-server, darwin }:
22

33
runCommandCC "daedalus-cardano-bridge" {
44
passthru = {

scripts/build-installer-unix.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ pushd installers
135135
then
136136
echo "Uploading the installer package.."
137137
export PATH=${BUILDKITE_BIN_PATH:-}:$PATH
138-
if [ -n "$UPLOAD_DIR_OVERRIDE" ] ; then
138+
if [ -n "${UPLOAD_DIR_OVERRIDE:-}" ] ; then
139139
upload_dir="$UPLOAD_DIR_OVERRIDE"
140140
mv "$APP_NAME" "$upload_dir"
141141
else

0 commit comments

Comments
 (0)