From 157de556363cb23abc48014b3da5943d58d996fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ole=20Kr=C3=BCger?= Date: Thu, 3 Oct 2024 11:53:24 +0100 Subject: [PATCH] Nix: Install DAL trusted setup --- default.nix | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/default.nix b/default.nix index f41d56b7a107..fa9dd629f2d3 100644 --- a/default.nix +++ b/default.nix @@ -44,10 +44,17 @@ fakeOpamSwitchPrefix = pkgs.runCommand "fake-opam-switch-prefix" - {} + { + buildInputs = with pkgs; [ + curl + cacert + ]; + } '' mkdir -p $out/share/zcash-params cp ${./images/ci/zcash-params}/* $out/share/zcash-params + + OPAM_SWITCH_PREFIX="$out" ${./scripts}/install_dal_trusted_setup.sh ''; mkFrameworkFlags = frameworks: -- GitLab