File tree Expand file tree Collapse file tree 5 files changed +19
-4
lines changed Expand file tree Collapse file tree 5 files changed +19
-4
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3- ## vNext
3+ ## 7.0.1
4+
5+ - Fixed crashing of Daedalus 7.0.0 on Ubuntu ([ PR 3257] ( https://github.com/input-output-hk/daedalus/pull/3257 ) )
46
57## 7.0.0
68
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ runCommandCC "daedalus-cardano-bridge" {
3333 '' }
3434 ${ lib . optionalString ( target == "x86_64-linux" ) ''
3535 chmod +w -R .
36- for x in cardano-launcher cardano-wallet ; do
36+ for x in cardano-launcher; do
3737 $STRIP $x
3838 patchelf --shrink-rpath $x
3939 done
Original file line number Diff line number Diff line change 1+ diff --git a/flake.nix b/flake.nix
2+ index 2d680c2198..9888884449 100644
3+ --- a/flake.nix
4+ +++ b/flake.nix
5+ @@ -427,6 +427,7 @@
6+ project = walletProject;
7+ };
8+ windowsPackages = mkPackages walletProject.projectCross.mingwW64;
9+ + musl64Packages = mkPackages walletProject.projectCross.musl64;
10+ }) // {
11+ # Continuous integration builds
12+ ci.tests.all = pkgs.releaseTools.aggregate {
Original file line number Diff line number Diff line change 3434 chmod -R +w $out
3535 cd $out
3636 patch -p1 -i ${ ./cardano-wallet--expose-windowsPackages.patch }
37+ patch -p1 -i ${ ./cardano-wallet--expose-musl64Packages.patch }
3738 '' ) ;
3839 inherit ( unpatched ) rev shortRev lastModified lastModifiedDate ;
3940 } ;
5556
5657 walletPackages = {
5758 x86_64-windows = walletFlake . packages . x86_64-linux . windowsPackages ;
58- x86_64-linux = walletFlake . packages . x86_64-linux ;
59+ x86_64-linux = walletFlake . packages . x86_64-linux . musl64Packages ;
5960 x86_64-darwin = walletFlake . packages . x86_64-darwin ;
6061 aarch64-darwin = walletFlake . packages . aarch64-darwin ;
6162 } . ${ targetSystem } ;
Original file line number Diff line number Diff line change 11{
22 "name" : " daedalus" ,
33 "productName" : " Daedalus" ,
4- "version" : " 7.0.0 " ,
4+ "version" : " 7.0.1 " ,
55 "description" : " Cryptocurrency Wallet" ,
66 "main" : " ./dist/main/index.js" ,
77 "scripts" : {
You can’t perform that action at this time.
0 commit comments