nichts/templates/rust/default.nix

9 lines
155 B
Nix
Raw Normal View History

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