init
This commit is contained in:
commit
02acb04f65
9 changed files with 582 additions and 0 deletions
16
package.nix
Normal file
16
package.nix
Normal 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";
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue