12 lines
174 B
Nix
12 lines
174 B
Nix
|
{ pkgs, ... }:
|
||
|
|
||
|
pkgs.stdenv.mkDerivation {
|
||
|
name = "wpcarro.dev";
|
||
|
src = ./.;
|
||
|
buildPhase = ''
|
||
|
mkdir -p $out
|
||
|
cp $src/index.html $out
|
||
|
'';
|
||
|
dontInstall = true;
|
||
|
}
|