nichts/templates/rust/default.nix

9 lines
153 B
Nix
Raw Normal View History

2025-06-05 08:27:20 +02:00
{rustPlatform}:
rustPlatform.buildRustPackage {
pname = "some-rust-package";
version = "0.0.1";
src = ./.;
cargoLock.lockFile = ./Cargo.lock;
}