2020-03-09 16:14:49 +01:00
|
|
|
{ pkgs, ... }:
|
|
|
|
|
|
|
|
pkgs.stdenv.mkDerivation {
|
|
|
|
name = "blog.wpcarro.dev";
|
|
|
|
buildInputs = with pkgs; [ hugo ];
|
2020-07-02 14:28:59 +02:00
|
|
|
src = builtins.path { path = ./.; name = "blog"; };
|
2020-03-09 16:14:49 +01:00
|
|
|
buildPhase = ''
|
|
|
|
mkdir -p $out
|
|
|
|
${pkgs.hugo}/bin/hugo --minify --destination $out
|
|
|
|
'';
|
|
|
|
dontInstall = true;
|
|
|
|
}
|