flake-template-hell/templates/rust/nix/package.nix

9 lines
179 B
Nix
Raw Normal View History

2024-08-14 23:44:43 +01:00
{ rustPlatform }: let
pname = "rust-app";
version = "0.1.0";
in rustPlatform.buildRustPackage {
inherit pname version;
src = ../.;
cargoLock.lockFile = ../Cargo.lock;
}