Skip to content

Commit

Permalink
nix: all windows executables now require libsodium-23.dll
Browse files Browse the repository at this point in the history
  • Loading branch information
rvl committed Sep 1, 2020
1 parent 109c5e8 commit d7ca998
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions nix/haskell.nix
Original file line number Diff line number Diff line change
Expand Up @@ -127,9 +127,13 @@ let
};


# Make sure that libsodium DLLs and shell completions are available .
# Make sure that libsodium DLLs for all windows executables,
# and add shell completions for main executables.
packages.cardano-wallet.components.exes.cardano-wallet.postInstall = optparseCompletionPostInstall + libSodiumPostInstall;
packages.cardano-wallet-jormungandr.components.exes.cardano-wallet-jormungandr.postInstall = optparseCompletionPostInstall;
packages.cardano-wallet-jormungandr.components.exes.cardano-wallet-jormungandr.postInstall = optparseCompletionPostInstall + libSodiumPostInstall;
packages.cardano-wallet-jormungandr.components.tests.unit.postInstall = libSodiumPostInstall;
packages.cardano-wallet-core.components.tests.unit.postInstall = libSodiumPostInstall;
packages.cardano-wallet-cli.components.tests.unit.postInstall = libSodiumPostInstall;
}

{
Expand Down

0 comments on commit d7ca998

Please sign in to comment.