This repository has no description
0

Configure Feed

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

core / nix / pkgs / knot-crate.nix
379 B 28 lines
1{ 2 rustPlatform, 3 src, 4 crate, 5 cmake, 6 perl, 7 ... 8}: 9rustPlatform.buildRustPackage { 10 pname = crate; 11 version = "2.0.0"; 12 13 inherit src; 14 15 cargoLock.lockFile = "${src}/Cargo.lock"; 16 17 nativeBuildInputs = [ 18 cmake 19 perl 20 ]; 21 22 dontUseCmakeConfigure = true; 23 24 cargoBuildFlags = ["--bin" crate "--package" crate]; 25 doCheck = false; 26 27 meta.mainProgram = crate; 28}