mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
60 lines
1.4 KiB
Nix
60 lines
1.4 KiB
Nix
{ rustPlatform
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, fetchurl
|
|
, pkg-config
|
|
, perl
|
|
, openssl
|
|
, lib
|
|
, darwin
|
|
}:
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "r0vm";
|
|
version = "0.21.0";
|
|
src = fetchFromGitHub {
|
|
owner = "risc0";
|
|
repo = "risc0";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-BIQd6yX453v4w8aU+2awcngOE6t4oIf7BseVLgPG4Bw=";
|
|
};
|
|
|
|
buildAndTestSubdir = "risc0/r0vm";
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
perl
|
|
];
|
|
|
|
buildInputs = [
|
|
openssl.dev
|
|
] ++ lib.optionals stdenv.isDarwin [
|
|
darwin.apple_sdk.frameworks.SystemConfiguration
|
|
];
|
|
|
|
doCheck = false;
|
|
|
|
cargoHash = "sha256-OsxCIFgJiHfx52nRYRNLTB501RGKSBPQs2MQAs/BFfc=";
|
|
|
|
postPatch =
|
|
let
|
|
# see https://github.com/risc0/risc0/blob/v0.21.0/risc0/circuit/recursion/build.rs
|
|
sha256Hash = "3504a2542626acb974dea1ae5542c90c032c4ef42f230977f40f245442a1ec23";
|
|
recursionZkr = fetchurl {
|
|
name = "recursion_zkr.zip";
|
|
url = "https://risc0-artifacts.s3.us-west-2.amazonaws.com/zkr/${sha256Hash}.zip";
|
|
sha256 = "sha256:08zcl515890gyivhj8rgyi72q0qcr515bbm1vrsbkb164raa411m";
|
|
};
|
|
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";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ marijanp ];
|
|
mainProgram = "r0vm";
|
|
};
|
|
}
|