File tree Expand file tree Collapse file tree 5 files changed +28
-4
lines changed Expand file tree Collapse file tree 5 files changed +28
-4
lines changed Original file line number Diff line number Diff line change 22
33## vNext
44
5+ ### Fixes
6+
7+ - Update ` cardano-node ` to a 9.1.1 (hotfix for the ledger replay bug) ([ PR 3221] ( https://github.com/input-output-hk/daedalus/pull/3221 ) )
8+
59### Chores
610
711- Unset ` LD_LIBRARY_PATH ` on Linux ([ PR 3219] ( https://github.com/input-output-hk/daedalus/pull/3219 ) )
Original file line number Diff line number Diff line change 55 nixpkgs . url = "github:nixos/nixpkgs/nixpkgs-22.11-darwin" ;
66 cardano-wallet-unpatched . url = "github:cardano-foundation/cardano-wallet/v2024-07-27" ;
77 cardano-wallet-unpatched . flake = false ; # otherwise, +10k quadratic dependencies in flake.lock…
8+ cardano-node-override . url = "github:IntersectMBO/cardano-node/9.1.1" ;
9+ cardano-node-override . flake = false ;
810 cardano-playground . url = "github:input-output-hk/cardano-playground/next-2024-07-24" ;
911 cardano-playground . flake = false ; # otherwise, +9k dependencies in flake.lock…
1012 cardano-shell . url = "github:input-output-hk/cardano-shell/0d1d5f036c73d18e641412d2c58d4acda592d493" ;
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-address cardano-node cardano- launcher cardano-cli cardano-wallet; do
36+ for x in cardano-launcher cardano-wallet; do
3737 $STRIP $x
3838 patchelf --shrink-rpath $x
3939 done
Original file line number Diff line number Diff line change 4040 } ) . defaultNix ;
4141
4242 nodeFlake = let
43- unpatched = walletFlake . inputs . cardano-node-runtime ;
43+ unpatched = inputs . cardano-node-override ;
4444 in ( flake-compat {
4545 src = {
4646 outPath = toString ( pkgs . runCommand "source" { } ''
4949 cd $out
5050 cp ${ walletFlake } /nix/supported-systems.nix $out/nix/supported-systems.nix
5151 '' ) ;
52- inherit ( unpatched . sourceInfo ) rev shortRev lastModified lastModifiedDate ;
52+ inherit ( unpatched ) rev shortRev lastModified lastModifiedDate ;
5353 } ;
5454 } ) . defaultNix ;
5555
6262
6363 nodePackages = {
6464 x86_64-windows = nodeFlake . legacyPackages . x86_64-linux . hydraJobs . windows ; # a bug in ${cardano-node}/flake.nix
65- x86_64-linux = nodeFlake . packages . x86_64-linux ;
65+ x86_64-linux = nodeFlake . hydraJobs . x86_64-linux . musl ;
6666 x86_64-darwin = nodeFlake . packages . x86_64-darwin ;
6767 aarch64-darwin = nodeFlake . packages . aarch64-darwin ;
6868 } . ${ targetSystem } ;
You can’t perform that action at this time.
0 commit comments