8 lines
179 B
Nix
8 lines
179 B
Nix
{ rustPlatform }: let
|
|
pname = "rust-app";
|
|
version = "0.1.0";
|
|
in rustPlatform.buildRustPackage {
|
|
inherit pname version;
|
|
src = ../.;
|
|
cargoLock.lockFile = ../Cargo.lock;
|
|
}
|