about summary refs log tree commit diff
path: root/users/wpcarro/website/sandbox/default.nix.ignore
blob: d7b4940a55b9337e040a2382a51c3d40daa59bd4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ pkgs, ... }:

pkgs.stdenv.mkDerivation {
  name = "covid-uk";
  buildInputs = [];
  src = builtins.path { path = ./.; name = "sandbox"; };
  buildPhase = ''
    mkdir -p $out
    cp $src/index.html $out
    cp -r ${depot.users.wpcarro.website.sandbox.covid-uk} $out/covid-uk
  '';
  dontInstall = true;
}