File tree 5 files changed +20
-3
lines changed
5 files changed +20
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
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 ) )
6
+
3
7
## 7.0.0
4
8
5
9
### Features
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ runCommandCC "daedalus-cardano-bridge" {
33
33
'' }
34
34
${ lib . optionalString ( target == "x86_64-linux" ) ''
35
35
chmod +w -R .
36
- for x in cardano-launcher cardano-wallet ; do
36
+ for x in cardano-launcher; do
37
37
$STRIP $x
38
38
patchelf --shrink-rpath $x
39
39
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 34
34
chmod -R +w $out
35
35
cd $out
36
36
patch -p1 -i ${ ./cardano-wallet--expose-windowsPackages.patch }
37
+ patch -p1 -i ${ ./cardano-wallet--expose-musl64Packages.patch }
37
38
'' ) ;
38
39
inherit ( unpatched ) rev shortRev lastModified lastModifiedDate ;
39
40
} ;
55
56
56
57
walletPackages = {
57
58
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 ;
59
60
x86_64-darwin = walletFlake . packages . x86_64-darwin ;
60
61
aarch64-darwin = walletFlake . packages . aarch64-darwin ;
61
62
} . ${ targetSystem } ;
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " daedalus" ,
3
3
"productName" : " Daedalus" ,
4
- "version" : " 7.0.0 " ,
4
+ "version" : " 7.0.1 " ,
5
5
"description" : " Cryptocurrency Wallet" ,
6
6
"main" : " ./dist/main/index.js" ,
7
7
"scripts" : {
You can’t perform that action at this time.
0 commit comments