This commit is contained in:
mtgmonkey 2025-06-16 15:48:31 -04:00
commit 02acb04f65
9 changed files with 582 additions and 0 deletions

16
package.nix Normal file
View file

@ -0,0 +1,16 @@
{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";
};
}