nixpkgs/pkgs/by-name/r0/r0vm/package.nix
2025-07-26 11:39:35 +02:00

58 lines
1.4 KiB
Nix

{
rustPlatform,
fetchFromGitHub,
fetchurl,
pkg-config,
perl,
openssl,
lib,
}:
rustPlatform.buildRustPackage rec {
pname = "r0vm";
version = "1.0.5";
src = fetchFromGitHub {
owner = "risc0";
repo = "risc0";
rev = "v${version}";
hash = "sha256-jtROtI5/4W2pNvn1ZYR/wQAZmECTr7YxuZGu2Ns9paw=";
};
buildAndTestSubdir = "risc0/r0vm";
nativeBuildInputs = [
pkg-config
perl
];
buildInputs = [
openssl.dev
];
doCheck = false;
cargoHash = "sha256-7vN3HRBCzvXT5Xoj+ciCiy+OQ0bC8s4C5360W+1Uld0=";
postPatch =
let
# see https://github.com/risc0/risc0/blob/v1.0.5/risc0/circuit/recursion/build.rs
sha256Hash = "4e8496469e1efa00efb3630d261abf345e6b2905fb64b4f3a297be88ebdf83d2";
recursionZkr = fetchurl {
name = "recursion_zkr.zip";
url = "https://risc0-artifacts.s3.us-west-2.amazonaws.com/zkr/${sha256Hash}.zip";
hash = "sha256-ToSWRp4e+gDvs2MNJhq/NF5rKQX7ZLTzope+iOvfg9I=";
};
in
''
ln -sf ${recursionZkr} ./risc0/circuit/recursion/src/recursion_zkr.zip
'';
meta = with lib; {
description = "RISC Zero zero-knowledge VM";
homepage = "https://github.com/risc0/risc0";
changelog = "https://github.com/risc0/risc0/blob/${src.rev}/CHANGELOG.md";
license = licenses.asl20;
maintainers = with maintainers; [ marijanp ];
mainProgram = "r0vm";
};
}