mirror of
https://github.com/logos-storage/circom-compat-ffi.git
synced 2026-01-02 12:53:10 +00:00
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;
|
|
};
|
|
} |