package properly

This commit is contained in:
xunuwu 2025-05-20 18:45:38 +02:00
parent f9b9b05683
commit b5e68df877
Signed by: xun
SSH key fingerprint: SHA256:Uot/1WoAjWAeqLOHA5vYy4phhVydsH7jCPmBjaPZfgI
6 changed files with 1655 additions and 0 deletions

15
default.nix Normal file
View file

@ -0,0 +1,15 @@
{buildNpmPackage}:
buildNpmPackage {
name = "xunuwu.xyz";
src = ./.;
npmDepsHash = "sha256-FCUCpHoji01RR1XhodVtyrYUWY96r+uSp0uhtBR/JD0=";
buildPhase = ''
npx @11ty/eleventy
'';
installPhase = ''
mv _site $out
'';
}