mirror of
https://github.com/gburd/nix-config.git
synced 2024-11-14 16:36:24 +00:00
9 lines
146 B
Nix
9 lines
146 B
Nix
{ rustPlatform }:
|
|
|
|
rustPlatform.buildRustPackage {
|
|
pname = "foo-bar";
|
|
version = "0.1.0";
|
|
|
|
src = ./.;
|
|
cargoLock.lockFile = ./Cargo.lock;
|
|
}
|