2024-12-16 19:57:40 +00:00
|
|
|
{
|
|
|
|
system ? builtins.currentSystem,
|
2025-01-15 23:52:52 +00:00
|
|
|
sources ? import ./npins,
|
|
|
|
pkgs ? import sources.nixpkgs { inherit system; },
|
|
|
|
papermod ? sources.hugo-papermod,
|
2024-12-16 19:57:40 +00:00
|
|
|
}:
|
|
|
|
pkgs.stdenv.mkDerivation {
|
|
|
|
name = "website";
|
|
|
|
src = ./.;
|
|
|
|
postPatch = "mkdir themes && cp -r ${papermod} themes/papermod";
|
|
|
|
nativeBuildInputs = [ pkgs.hugo ];
|
|
|
|
buildPhase = "hugo";
|
|
|
|
installPhase = "cp -r public $out";
|
|
|
|
}
|