flake-template-hell/templates/rust/nix/package.nix
2024-08-14 23:44:43 +01:00

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;
}