feat(rrv.sh): add rrv.sh package and move website to package

This commit is contained in:
Mohammad Rafiq 2025-06-22 19:39:44 +08:00
parent 5f7cfd5d24
commit c79de25dce
No known key found for this signature in database
3 changed files with 15 additions and 2 deletions

View file

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