This commit is contained in:
Harivansh Rathi 2026-03-31 00:29:54 -04:00
parent 1e5f4e94ea
commit 39ad1ff7a4

View file

@ -1,6 +1,8 @@
{ {
lib, lib,
fetchFromGitHub, fetchFromGitHub,
openssl,
pkg-config,
rustPlatform, rustPlatform,
}: }:
rustPlatform.buildRustPackage { rustPlatform.buildRustPackage {
@ -20,6 +22,10 @@ rustPlatform.buildRustPackage {
cp ${./Cargo.lock} Cargo.lock cp ${./Cargo.lock} Cargo.lock
''; '';
nativeBuildInputs = [ pkg-config ];
buildInputs = [ openssl ];
cargoBuildFlags = [ cargoBuildFlags = [
"-p" "-p"
"sandbox-agent" "sandbox-agent"