e4ddc3ba75
Thanks to the Nix anti-patterns documented here... https://nix.dev/anti-patterns/language.html#reproducability-referencing-top-level-directory-with ...I'm cleaning up some of my Nix expressions. Read the article for more context.
13 lines
308 B
Nix
13 lines
308 B
Nix
{ 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;
|
|
}
|