tvl-depot/website/default.nix
William Carroll 89cd77a64b Create wpcarro.dev/goals
Create a simple React app to define my goals. See the goals/README.md for more
context.
2020-03-25 16:30:22 +00:00

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
'';
}