1
Fork 0

flake.nix: less buildInputs

This commit is contained in:
Motiejus Jakštys 2024-10-09 21:54:13 -04:00
parent ae8c3531e5
commit c4296b3278
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@
pname = "jakstys.lt";
version = "1.0.0";
src = pkgs.lib.cleanSource self;
buildInputs = devDeps;
buildInputs = with pkgs; [hugo dart-sass];
buildPhase = "hugo --cleanDestinationDir --printPathWarnings --panicOnWarning";
installPhase = "mv public $out";
}) {};