2024-04-06 19:49:07 +02:00
|
|
|
{ stdenv, fetchgit, git, go, hugo }:
|
2024-04-06 16:44:54 +02:00
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "resumee-website";
|
2024-04-06 19:49:07 +02:00
|
|
|
version = "1.0";
|
|
|
|
src = fetchgit {
|
|
|
|
url = "https://git.vatthauer.xyz/leonv/resumee-website.git";
|
|
|
|
hash = "sha256-WCqkNpUWNGMW3YkrJf64FKZDgebdeOzite9XR9IHifg=";
|
|
|
|
};
|
|
|
|
nativeBuildInputs = [ git go hugo ];
|
|
|
|
buildPhase = "hugo -d $out";
|
|
|
|
outputHashAlgo = "sha256";
|
|
|
|
outputHashMode = "recursive";
|
|
|
|
outputHash = "sha256-d0I7CJLNea9QCGvrKh+LAXsrR+olj8OFmhRgSHZGPU0=";
|
|
|
|
|
2024-04-06 16:44:54 +02:00
|
|
|
}
|
|
|
|
|