aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorKamen Mladenov <kamen@syndamia.com>2025-03-10 15:28:32 +0200
committerKamen Mladenov <kamen@syndamia.com>2025-04-04 11:03:00 +0300
commitfe7d70ad78c4660e4e11f8c6bbcfca05fe1099ce (patch)
tree63a81a58d54891b61cf8a45db530336c0063be5e /flake.nix
parent2cb82e5981490274087e0d144dbc9aa947c91c22 (diff)
downloadzkVMs-benchmarks-fe7d70ad78c4660e4e11f8c6bbcfca05fe1099ce.tar
zkVMs-benchmarks-fe7d70ad78c4660e4e11f8c6bbcfca05fe1099ce.tar.gz
zkVMs-benchmarks-fe7d70ad78c4660e4e11f8c6bbcfca05fe1099ce.zip
feat(flake.nix): Add script for updating all zkVM package dependencies
All crates use the zkVM packages (from nix-blockchain-development) as cargo path dependencies. For each zkVM, they're found in the host, guest and wrapper crates. Since there are a lot of places to update, we're introducing a script which automates this.
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix
index 903acb4..21e9694 100644
--- a/flake.nix
+++ b/flake.nix
@@ -75,6 +75,7 @@
in {
packages.${system} = hostPackages // guestPackages // {
rust-format-all = callPackage ./rust-format-all.nix { };
+ update-nix-dependencies = callPackage ./update-nix-dependencies.nix { };
};
formatter.${system} = pkgs.nixfmt;