mirror of
https://github.com/codex-storage/circom-compat-ffi.git
synced 2025-01-10 18:55:49 +00:00
297c46fdc7
Signed-off-by: markoburcul <marko@status.im>
21 lines
370 B
Nix
21 lines
370 B
Nix
{ pkgs }:
|
|
|
|
pkgs.rustPlatform.buildRustPackage {
|
|
pname = "circom-compat-ffi";
|
|
version = "0.1.0";
|
|
|
|
src = ./.;
|
|
|
|
cargoLock = {
|
|
lockFile = ./Cargo.lock;
|
|
allowBuiltinFetchGit = true;
|
|
};
|
|
|
|
CARGO_HOME = "/tmp";
|
|
cargoBuildFlags = ["--release"];
|
|
|
|
meta = with pkgs.lib; {
|
|
description = "circom-compat (ark-circom) ffi";
|
|
license = licenses.mit;
|
|
};
|
|
} |