update nix files
This commit is contained in:
parent
0dca9733e7
commit
fdf65e138d
2 changed files with 6 additions and 6 deletions
14
default.nix
Normal file
14
default.nix
Normal file
|
@ -0,0 +1,14 @@
|
|||
{ stdenv, hugo }:
|
||||
stdenv.mkDerivation rec {
|
||||
src = ./.;
|
||||
nativeBuildInputs = [ hugo ];
|
||||
buildPhase = ''
|
||||
hugo
|
||||
'';
|
||||
installPhase = ''
|
||||
mkdir -p $out
|
||||
cp -r public/* $out
|
||||
'';
|
||||
name = "dadada.li";
|
||||
version = "0.2";
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue