Website working.

This commit is contained in:
leonv@willem 2024-04-06 20:08:38 +02:00
parent f2a77125b7
commit 7a1ae0d0d7

View file

@ -1,16 +1,16 @@
{ stdenv, fetchgit, git, go, hugo }: { stdenv, git, go, hugo }:
stdenv.mkDerivation { stdenv.mkDerivation {
name = "resumee-website"; name = "resumee-website";
version = "1.0"; version = "1.0";
src = fetchgit { src = builtins.fetchGit {
url = "https://git.vatthauer.xyz/leonv/resumee-website.git"; url = "https://git.vatthauer.xyz/leonv/resumee-website.git";
hash = "sha256-WCqkNpUWNGMW3YkrJf64FKZDgebdeOzite9XR9IHifg="; rev = "9516643a88018050676dd1f57f5cc7e245e55591";
}; };
nativeBuildInputs = [ git go hugo ]; nativeBuildInputs = [ git go hugo ];
buildPhase = "hugo -d $out"; buildPhase = "hugo -d $out";
outputHashAlgo = "sha256"; outputHashAlgo = "sha256";
outputHashMode = "recursive"; outputHashMode = "recursive";
outputHash = "sha256-d0I7CJLNea9QCGvrKh+LAXsrR+olj8OFmhRgSHZGPU0="; outputHash = "sha256-icJv4zvaioxj9Ego0rDIFSm1PXRhAMsxmtYJj0H0+8Y=";
} }