diff options
Diffstat (limited to 'website/blog/default.nix')
-rw-r--r-- | website/blog/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/website/blog/default.nix b/website/blog/default.nix index 437f5cc108d7..cea9e8706cd6 100644 --- a/website/blog/default.nix +++ b/website/blog/default.nix @@ -3,7 +3,7 @@ pkgs.stdenv.mkDerivation { name = "blog.wpcarro.dev"; buildInputs = with pkgs; [ hugo ]; - src = ./.; + src = builtins.path { path = ./.; name = "blog"; }; buildPhase = '' mkdir -p $out ${pkgs.hugo}/bin/hugo --minify --destination $out |