Monorepo for Tangled tangled.org
5

Configure Feed

Select the types of activity you want to include in your feed.

at icy/yrolzt 362 B View raw
1{ 2 rustPlatform, 3 src, 4 protobuf, 5 ... 6}: let 7 flags = ["--bin" "shuttle" "--package" "shuttle"]; 8in 9 rustPlatform.buildRustPackage { 10 pname = "shuttle"; 11 version = "0.1.0"; 12 13 inherit src; 14 15 cargoLock.lockFile = "${src}/Cargo.lock"; 16 17 nativeBuildInputs = [ 18 protobuf 19 ]; 20 21 cargoBuildFlags = flags; 22 cargoTestFlags = flags; 23 }