894615af52
This should be the last hold-out before deploying habit-screens! :)
13 lines
303 B
Nix
13 lines
303 B
Nix
{ 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 -r ${briefcase.website.habit-screens} $out/habits/index.html
|
|
'';
|
|
}
|