nichts/nyx/flake/templates/rust/default.nix

9 lines
147 B
Nix
Raw Normal View History

2024-04-09 23:11:33 +02:00
{rustPlatform}:
rustPlatform.buildRustPackage {
pname = "sample-rust";
version = "0.0.1";
src = ./.;
cargoLock.lockFile = ./Cargo.lock;
}