1d5ab45303
Nest the learn directory in the website directory.
10 lines
159 B
Nix
10 lines
159 B
Nix
{ pkgs, ... }:
|
|
|
|
pkgs.stdenv.mkDerivation {
|
|
name = "learn.wpcarro.dev";
|
|
src = ./static;
|
|
buildPhase = ''
|
|
cp -R $src $out
|
|
'';
|
|
dontInstall = true;
|
|
}
|