about summary refs log blame commit diff
path: root/website/default.nix
blob: 7bb2e47519f590f5644b7d4f01b9d48e33be0aa9 (plain) (tree)
1
2
3
4
5
6
7
8
                         


                          
                                                        
                   

                           


                                                 


                                                         
     
 
{ 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/goals
    cp -r ${briefcase.website.goals}/* $out/goals

    mkdir -p $out/habits
    cp ${briefcase.website.habits} $out/habits/index.html
  '';
}