blob: 514b60cec697ab31b6cb851b793dd4e0fbaff9cd (
plain) (
tree)
|
|
{ pkgs, briefcase, ... }:
pkgs.stdenv.mkDerivation {
name = "wpcarro.dev";
src = builtins.path { path = ./.; name = "website"; };
installPhase = ''
mkdir -p $out
cp $src/index.html $out
mkdir -p $out/habits
cp ${briefcase.website.habit-screens} $out/habits/index.html
'';
}
|