89cd77a64b
Create a simple React app to define my goals. See the goals/README.md for more context.
10 lines
155 B
Nix
10 lines
155 B
Nix
{ pkgs, ... }:
|
|
|
|
pkgs.stdenv.mkDerivation {
|
|
name = "goals";
|
|
src = ./.;
|
|
installPhase = ''
|
|
mkdir -p $out
|
|
cp $srcs/index.{html,jsx} $out
|
|
'';
|
|
}
|