diff options
Diffstat (limited to 'users/wpcarro/website/sandbox/default.nix.ignore')
-rw-r--r-- | users/wpcarro/website/sandbox/default.nix.ignore | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/users/wpcarro/website/sandbox/default.nix.ignore b/users/wpcarro/website/sandbox/default.nix.ignore new file mode 100644 index 000000000000..4f86b49002a5 --- /dev/null +++ b/users/wpcarro/website/sandbox/default.nix.ignore @@ -0,0 +1,13 @@ +{ pkgs, briefcase, ... }: + +pkgs.stdenv.mkDerivation { + name = "covid-uk"; + buildInputs = []; + src = builtins.path { path = ./.; name = "sandbox"; }; + buildPhase = '' + mkdir -p $out + cp $src/index.html $out + cp -r ${briefcase.website.sandbox.covid-uk} $out/covid-uk + ''; + dontInstall = true; +} |