20 lines
499 B
Nix
Raw Normal View History

2024-06-04 11:30:13 +08:00
{ rustPlatform, lib, callPackage, projectConfig ? callPackage ./project-config.nix { }, ... }: rustPlatform.buildRustPackage {
inherit (projectConfig) buildInputs nativeBuildInputs;
pname = "chat-signaling-server";
2024-06-04 11:36:18 +08:00
version = "0.2.0";
2024-06-04 11:30:13 +08:00
src = ./.;
cargoLock = {
lockFile = ./Cargo.lock;
};
meta = with lib; {
description = "rust project scaffold";
homepage = "https://git.jeffthecoder.xyz/public/os-flakes";
license = licenses.unlicense;
maintainers = [ ];
2024-05-29 18:49:28 +08:00
};
}