This repository has no description
0

Configure Feed

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

core / nix / pkgs / bobbin.nix
275 B 19 lines
1{ 2 rustPlatform, 3 src, 4 ... 5}: 6let 7 flags = ["--bin" "bobbin" "-p" "bobbin"]; 8in 9rustPlatform.buildRustPackage { 10 pname = "bobbin"; 11 version = "0.0.1"; 12 13 inherit src; 14 15 cargoLock.lockFile = "${src}/Cargo.lock"; 16 17 cargoBuildFlags = flags; 18 cargoTestFlags = flags; 19}