15 lines
299 B
Nix
15 lines
299 B
Nix
{ pkgs ? import <nixpkgs> { }
|
|
, agent
|
|
}:
|
|
with pkgs;
|
|
rustPlatform.buildRustPackage {
|
|
name = "agent-harness";
|
|
src = nix-gitignore.gitignoreSource [ ] ./.;
|
|
|
|
nativeBuildInputs = [ cargo rustc ];
|
|
|
|
buildInputs = [ agent ];
|
|
|
|
cargoHash = "sha256-ZgwQr1goz9yPws0P1eQwhHEv2WbcJeTCLEPYOUADOtE=";
|
|
}
|