Alisa/nix/backend.nix
2024-07-05 13:45:42 +02:00

19 lines
293 B
Nix

{
lib,
rustPlatform,
stdenv,
}:
rustPlatform.buildRustPackage rec {
pname = "backend";
version = "0.1";
src = ../.;
cargoHash = "sha256-NRrWWD3e2zm4rVYyCPm3vQhPDRkVMauTnoENwRucXcw=";
meta = with lib; {
platforms = lib.platforms.all;
mainProgram = "backend";
};
}