tvl-depot/website/sandbox/default.nix
William Carroll f4fea2346e Move sandbox into website
Nest the sandbox work under ./website.
2020-03-20 00:52:05 +00:00

13 lines
264 B
Nix

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