Alisa/nix/backend.nix

22 lines
275 B
Nix
Raw Normal View History

2024-07-05 13:45:42 +02:00
{
lib,
rustPlatform,
stdenv,
}:
rustPlatform.buildRustPackage rec {
pname = "backend";
version = "0.1";
src = ../.;
cargoLock = {
lockFile = ../Cargo.lock;
};
2024-07-05 13:45:42 +02:00
meta = with lib; {
platforms = lib.platforms.all;
mainProgram = "backend";
};
}