Skip to content

Commit

Permalink
[LW-11965] Fix crashing of Daedalus 7.0.0 on Ubuntu
Browse files Browse the repository at this point in the history
  • Loading branch information
michalrus committed Dec 10, 2024
1 parent f33865f commit 728a4da
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 4 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Changelog

## vNext
## 7.0.1

- Fixed crashing of Daedalus 7.0.0 on Ubuntu ([PR 3257](https://github.com/input-output-hk/daedalus/pull/3257))

## 7.0.0

Expand Down
2 changes: 1 addition & 1 deletion nix/internal/cardano-bridge.nix
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ runCommandCC "daedalus-cardano-bridge" {
''}
${lib.optionalString (target == "x86_64-linux") ''
chmod +w -R .
for x in cardano-launcher cardano-wallet; do
for x in cardano-launcher; do
$STRIP $x
patchelf --shrink-rpath $x
done
Expand Down
12 changes: 12 additions & 0 deletions nix/internal/cardano-wallet--expose-musl64Packages.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
diff --git a/flake.nix b/flake.nix
index 2d680c2198..9888884449 100644
--- a/flake.nix
+++ b/flake.nix
@@ -427,6 +427,7 @@
project = walletProject;
};
windowsPackages = mkPackages walletProject.projectCross.mingwW64;
+ musl64Packages = mkPackages walletProject.projectCross.musl64;
}) // {
# Continuous integration builds
ci.tests.all = pkgs.releaseTools.aggregate {
3 changes: 2 additions & 1 deletion nix/internal/common.nix
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ rec {
chmod -R +w $out
cd $out
patch -p1 -i ${./cardano-wallet--expose-windowsPackages.patch}
patch -p1 -i ${./cardano-wallet--expose-musl64Packages.patch}
'');
inherit (unpatched) rev shortRev lastModified lastModifiedDate;
};
Expand All @@ -55,7 +56,7 @@ rec {

walletPackages = {
x86_64-windows = walletFlake.packages.x86_64-linux.windowsPackages;
x86_64-linux = walletFlake.packages.x86_64-linux;
x86_64-linux = walletFlake.packages.x86_64-linux.musl64Packages;
x86_64-darwin = walletFlake.packages.x86_64-darwin;
aarch64-darwin = walletFlake.packages.aarch64-darwin;
}.${targetSystem};
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "daedalus",
"productName": "Daedalus",
"version": "7.0.0",
"version": "7.0.1",
"description": "Cryptocurrency Wallet",
"main": "./dist/main/index.js",
"scripts": {
Expand Down

0 comments on commit 728a4da

Please sign in to comment.