first commit

This commit is contained in:
2025-11-09 01:06:25 +02:00
commit dbaa2feb48
28 changed files with 1551 additions and 0 deletions

20
package.nix Normal file
View File

@@ -0,0 +1,20 @@
{pkgs}:
pkgs.rustPlatform.buildRustPackage {
pname = "stdsrv";
version = "0.1.0";
src = ./.;
cargoLock.lockFile = ./Cargo.lock;
cargoBuildFlags = ["-p" "stdsrv"];
doCheck = true;
meta = with pkgs.lib; {
description = "A simple file server that converts your markdown files to HTML before serving them.";
license = licenses.gpl3;
maintainers = [maintainers.scrac];
platforms = platforms.linux;
};
}