From 90f15312d1a56ad5beb9e4796cdca66ad5fb6c8c Mon Sep 17 00:00:00 2001 From: Martin Minkov Date: Tue, 19 Dec 2023 11:09:25 -0800 Subject: [PATCH] fix(rust.nix): update regex pattern to match kimchi_bindings instead of kimchi in source path to correctly locate the wasm source files --- nix/rust.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix/rust.nix b/nix/rust.nix index c880e0c41c72..6b420677751f 100644 --- a/nix/rust.nix +++ b/nix/rust.nix @@ -158,7 +158,7 @@ in pname = "plonk_wasm"; version = "0.1.0"; src = final.lib.sourceByRegex ../src [ - "^lib(/crypto(/kimchi(/wasm(/.*)?)?)?)?$" + "^lib(/crypto(/kimchi_bindings(/wasm(/.*)?)?)?)?$" "^lib(/crypto(/proof-systems(/.*)?)?)?$" ]; sourceRoot = "source/lib/crypto/kimchi_bindings/wasm";