rust-http-server/package.nix
mtgmonkey 02acb04f65 init
2025-06-16 15:48:31 -04:00

16 lines
407 B
Nix

{rustPlatform, ...}:
rustPlatform.buildRustPackage {
name = "rust_http_server";
src = ./.;
cargoLock.lockFile = ./Cargo.lock;
nativeBuildInputs = [];
buildInputs = [];
configurePhase = '''';
buildPhase = '''';
installPhase = '''';
meta = {
mainProgram = "rust_http_server";
description = "bare minimum, serves the current directory";
homepage = "https://mtgmonkey.net";
};
}