Skip to content

Commit 504f1e5

Browse files
committed
[DDW-1116] Package libssl-3-x64.dll, too
1 parent a8e998e commit 504f1e5

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

installers/common/WindowsInstaller.hs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -228,6 +228,7 @@ writeInstallerNSIS outName (Version fullVersion') InstallerConfig{installDirecto
228228
file [] "libsodium-23.dll"
229229
file [] "libsecp256k1-0.dll"
230230
file [] "libcrypto-3-x64.dll"
231+
file [] "libssl-3-x64.dll"
231232
when (clusterName == Selfnode) $ do
232233
file [] "signing.key"
233234
file [] "delegation.cert"

nix/cardano-bridge.nix

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,10 @@ runCommandCC "daedalus-cardano-bridge" {
1313
cp -f ${cardano-address}/bin/cardano-address* .
1414
cp -f ${cardano-shell.haskellPackages.cardano-launcher.components.exes.cardano-launcher}/bin/* .
1515
cp -f ${cardano-node}/bin/cardano-node* .
16-
cp -f ${cardano-node}/bin/libcrypto-3-x64.dll .
16+
${if target == "x86_64-windows" then ''
17+
cp -f ${cardano-node}/bin/libcrypto-3-x64.dll .
18+
cp -f ${cardano-node}/bin/libssl-3-x64.dll .
19+
'' else ""}
1720
cp -f ${cardano-cli}/bin/cardano-cli* .
1821
${lib.optionalString (local-cluster != null) ''
1922

0 commit comments

Comments
 (0)