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









                                  
{ pkgs, ... }:

pkgs.stdenv.mkDerivation {
  name = "goals";
  src = ./.;
  installPhase = ''
    mkdir -p $out
    cp $srcs/index.{html,jsx} $out
  '';
}