89cd77a64b
Create a simple React app to define my goals. See the goals/README.md for more context.
13 lines
240 B
Nix
13 lines
240 B
Nix
{ 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
|
|
'';
|
|
}
|