nixos/willem/services/resumee-website.nix

17 lines
453 B
Nix
Raw Normal View History

2024-04-06 20:08:38 +02:00
{ stdenv, 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";
2024-04-06 20:08:38 +02:00
src = builtins.fetchGit {
2024-04-06 19:49:07 +02:00
url = "https://git.vatthauer.xyz/leonv/resumee-website.git";
2024-04-06 20:08:38 +02:00
rev = "9516643a88018050676dd1f57f5cc7e245e55591";
2024-04-06 19:49:07 +02:00
};
nativeBuildInputs = [ git go hugo ];
buildPhase = "hugo -d $out";
outputHashAlgo = "sha256";
outputHashMode = "recursive";
2024-04-06 20:08:38 +02:00
outputHash = "sha256-icJv4zvaioxj9Ego0rDIFSm1PXRhAMsxmtYJj0H0+8Y=";
2024-04-06 19:49:07 +02:00
2024-04-06 16:44:54 +02:00
}