16 lines
453 B
Nix
16 lines
453 B
Nix
{ stdenv, git, go, hugo }:
|
|
stdenv.mkDerivation {
|
|
name = "resumee-website";
|
|
version = "1.0";
|
|
src = builtins.fetchGit {
|
|
url = "https://git.vatthauer.xyz/leonv/resumee-website.git";
|
|
rev = "9516643a88018050676dd1f57f5cc7e245e55591";
|
|
};
|
|
nativeBuildInputs = [ git go hugo ];
|
|
buildPhase = "hugo -d $out";
|
|
outputHashAlgo = "sha256";
|
|
outputHashMode = "recursive";
|
|
outputHash = "sha256-icJv4zvaioxj9Ego0rDIFSm1PXRhAMsxmtYJj0H0+8Y=";
|
|
|
|
}
|
|
|