blob: 81cd5c2126992bf63d2f7871381adbfb75f2487c (
plain) (
tree)
|
|
{ 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;
}
|