build: init static site at 0.0.1

This commit is contained in:
Mohammad Rafiq 2025-06-23 19:30:28 +08:00
commit fc489e80f0
No known key found for this signature in database
6 changed files with 87 additions and 0 deletions

12
default.nix Normal file
View file

@ -0,0 +1,12 @@
{ stdenv, ... }:
let
name = "rrv.sh";
version = "0.0.1";
in
stdenv.mkDerivation {
inherit name version;
src = ./src;
installPhase = ''
cp -r . $out
'';
}