Skip to content

Commit 7c09150

Browse files
committed
fix: trying with LD_PATH another way.
1 parent bfb34f6 commit 7c09150

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

flake.nix

+1-3
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,6 @@
7777
lld
7878
coreutils
7979
gcc
80-
openssl
8180
]
8281
++ runtimeDependencies
8382
# Be it Darwin
@@ -113,10 +112,9 @@
113112
devShells.default = mkShell {
114113
buildInputs = developmentDependencies;
115114

116-
LD_LIBRARY_PATH=lib.makeLibraryPath [ pkgs.gcc.cc.lib pkgs.openssl ];
117-
118115
shellHook = ''
119116
#!/bin/bash
117+
export LD_LIBRARY_PATH=${lib.getLib pkgs.openssl}/lib:${lib.getLib gcc}/lib:${lib.getLib stdenv.cc.cc.lib}/lib:$LD_LIBRARY_PATH
120118
export MONZA_APTOS_PATH=$(nix path-info -r .#monza-aptos | tail -n 1)
121119
cat <<'EOF'
122120
_ _ __ _ _ ____ _ _ ____ __ _ ____

process-compose/m1-da-light-node/process-compose.local.yml

+4
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ processes:
1010
readiness_probe:
1111
exec:
1212
command: echo "true"
13+
availability:
14+
exit_on_failure: true
1315

1416
celestia-bridge:
1517
command: |
@@ -20,6 +22,8 @@ processes:
2022
depends_on:
2123
celestia-node-appd:
2224
condition: process_healthy
25+
availability:
26+
exit_on_failure: true
2327

2428
celestia-light-node:
2529
command: |

0 commit comments

Comments
 (0)