15 lines
198 B
Nix
15 lines
198 B
Nix
{ pkgs, stdenv }:
|
|
|
|
with pkgs;
|
|
with stdenv;
|
|
|
|
mkDerivation {
|
|
pname = "personal-site";
|
|
version = "2026-04-29";
|
|
|
|
phases = [ "installPhase" ];
|
|
|
|
installPhase = ''
|
|
cp -r /build/source/* $out/
|
|
'';
|
|
}
|