Force theme vendoring in configurePhase.

This commit is contained in:
Lyle Mantooth 2025-06-25 14:04:01 -04:00
parent 7a0efc520b
commit abb81351ca
Signed by: IslandUsurper
SSH key fingerprint: SHA256:7OQGnFyxgqLkSqpNeuqXgKL+0NmXES1atELKc4dKOw8

View file

@ -20,7 +20,7 @@
nativeBuildInputs = [ zola ]; nativeBuildInputs = [ zola ];
configurePhase = '' configurePhase = ''
mkdir -p "themes/${themeName}" mkdir -p "themes/${themeName}"
cp -r ${hermit-zola}/* "themes/${themeName}" cp -rf ${hermit-zola}/* "themes/${themeName}"
''; '';
buildPhase = "zola build"; buildPhase = "zola build";
installPhase = "cp -r public $out"; installPhase = "cp -r public $out";