12 rustPlatform.buildRustPackage rec {
13 pname = "cargo-risczero";
17 inherit pname version;
18 hash = "sha256-YZ3yhj1VLxl3Fg/yWhqrZXxIQ7oK6Gdo0NU39oDvoo8=";
21 src-recursion-hash = "28e4eeff7a8f73d27408d99a1e3e8842c79a5f4353e5117ec0b7ffaa7c193612"; # That is from cargoDeps/risc0-circuit-recursion/build.rs
23 src-recursion = fetchurl {
24 url = "https://risc0-artifacts.s3.us-west-2.amazonaws.com/zkr/${src-recursion-hash}.zip";
25 hash = "sha256-KOTu/3qPc9J0CNmaHj6IQseaX0NT5RF+wLf/qnwZNhI="; # This hash should be the same as src-recuresion-hash
29 RECURSION_SRC_PATH = src-recursion;
32 cargoHash = "sha256-pNgnUtKn2w5rWbgDi0MHZCm9nYPgESL3g7EMaYwoSq4=";
42 # The tests require network access which is not available in sandboxed Nix builds.
45 passthru.updateScript = nix-update-script { };
48 description = "Cargo extension to help create, manage, and test RISC Zero projects";
49 mainProgram = "cargo-risczero";
50 homepage = "https://risczero.com";
51 license = with lib.licenses; [ asl20 ];
52 maintainers = with lib.maintainers; [ cameronfyfe ];