Fix Nix package sources specification

This commit is contained in:
Reinout Meliesie 2026-04-29 18:59:55 +02:00
commit 0ae83cfb3e
Signed by: zedfrigg
GPG key ID: 3AFCC06481308BC6

View file

@ -7,12 +7,13 @@ mkDerivation {
pname = "personal-site"; pname = "personal-site";
version = "2026-04-29"; version = "2026-04-29";
phases = [ "installPhase" ]; src = ./src;
installPhase = '' installPhase = ''
runHook preInstall runHook preInstall
cp -r /build/source/* $out/ mkdir -p $out
cp -r $src/* $out/
runHook postInstall runHook postInstall
''; '';