f4fea2346e
Nest the sandbox work under ./website.
13 lines
264 B
Nix
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;
|
|
}
|