Skip to content

Commit cafb239

Browse files
authored
Merge pull request #3288 from input-output-hk/chore-upgrade-cardano-wallet-and-cardano-node
changes for upgraded Cardano-node and Cardano-wallet to 10.2.1 and v2…
2 parents a3ae400 + 5ae0c44 commit cafb239

File tree

7 files changed

+34
-37
lines changed

7 files changed

+34
-37
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44

55
### Chores
66

7+
- Update `cardano-node` to 10.2.1 and `cardano-wallet` to v2025-03-31 ([PR 3288](https://github.com/input-output-hk/daedalus/pull/3288))
8+
79
- Added the links to app.projectcatalyst.io ([PR 3286](https://github.com/input-output-hk/daedalus/pull/3286))
810

911
## 7.1.0

flake.lock

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33

44
inputs = {
55
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-22.11-darwin";
6-
cardano-wallet-unpatched.url = "github:cardano-foundation/cardano-wallet/v2025-01-09";
6+
cardano-wallet-unpatched.url = "github:cardano-foundation/cardano-wallet/v2025-03-31";
77
cardano-wallet-unpatched.flake = false; # otherwise, +10k quadratic dependencies in flake.lock…
8-
cardano-node-override.url = "github:IntersectMBO/cardano-node/10.1.4";
8+
cardano-node-override.url = "github:IntersectMBO/cardano-node/10.2.1";
99
cardano-node-override.flake = false;
1010
cardano-playground.url = "github:input-output-hk/cardano-playground/d3322dce0ab1c00386adc93899aabe9252342b54";
1111
cardano-playground.flake = false; # otherwise, +9k dependencies in flake.lock…

nix/internal/cardano-wallet--expose-musl64Packages.patch

Lines changed: 0 additions & 12 deletions
This file was deleted.
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
diff --git a/flake.nix b/flake.nix
2+
index 76b05e4d73..03fd75e9e7 100644
3+
--- a/flake.nix
4+
+++ b/flake.nix
5+
@@ -370,6 +370,7 @@
6+
tests = lib.collect lib.isDerivation windowsPackages.tests;
7+
benchmarks = lib.collect lib.isDerivation windowsPackages.benchmarks;
8+
};
9+
+ inherit windowsPackages;
10+
};
11+
}
12+
# macos is never cross-compiled
13+
@@ -434,6 +435,7 @@
14+
inherit pkgs;
15+
project = walletProject;
16+
};
17+
+ musl64Packages = mkPackages walletProject.projectCross.musl64;
18+
}) // {
19+
# Continuous integration builds
20+
ci.tests.all = pkgs.releaseTools.aggregate {

nix/internal/cardano-wallet--expose-windowsPackages.patch

Lines changed: 0 additions & 12 deletions
This file was deleted.

nix/internal/common.nix

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,7 @@ rec {
3333
cp -r ${unpatched} $out
3434
chmod -R +w $out
3535
cd $out
36-
patch -p1 -i ${./cardano-wallet--expose-windowsPackages.patch}
37-
patch -p1 -i ${./cardano-wallet--expose-musl64Packages.patch}
36+
patch -p1 -i ${./cardano-wallet--expose-packages.patch}
3837
'');
3938
inherit (unpatched) rev shortRev lastModified lastModifiedDate;
4039
};
@@ -55,7 +54,7 @@ rec {
5554
}).defaultNix;
5655

5756
walletPackages = {
58-
x86_64-windows = walletFlake.packages.x86_64-linux.windowsPackages;
57+
x86_64-windows = walletFlake.packages.x86_64-linux.ci.artifacts.win64.windowsPackages;
5958
x86_64-linux = walletFlake.packages.x86_64-linux.musl64Packages;
6059
x86_64-darwin = walletFlake.packages.x86_64-darwin;
6160
aarch64-darwin = walletFlake.packages.aarch64-darwin;

0 commit comments

Comments
 (0)