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

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