add static landing page
This commit is contained in:
parent
26a5baf72a
commit
37b7e4f619
20 changed files with 1564 additions and 11 deletions
18
nix/site.nix
Normal file
18
nix/site.nix
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
{ pkgs }:
|
||||
|
||||
pkgs.stdenvNoCC.mkDerivation {
|
||||
pname = "tide-landing-page";
|
||||
version = "1.0.0";
|
||||
src = ../site;
|
||||
|
||||
dontBuild = true;
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
|
||||
mkdir -p "$out"
|
||||
cp -R . "$out"
|
||||
|
||||
runHook postInstall
|
||||
'';
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue