blob: 474a6cd4b0c7f843718164a2610e22e8d13ed853 (
plain) (
tree)
|
|
{ pkgs, briefcase, ... }:
pkgs.stdenv.mkDerivation {
name = "wpcarro.dev";
src = ./.;
installPhase = ''
mkdir -p $out
cp $src/index.html $out
mkdir -p $out/goals
cp -r ${briefcase.website.goals}/* $out/goals
mkdir -p $out/habits
cp ${briefcase.website.habits} $out/habits/index.html
'';
}
|