nixos/willem/services/resumee-website.nix

16 lines
452 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-15 14:24:16 +02:00
rev = "5cd0f5bb30da8d7297a15be3704e4d9efc73d8b4";
2024-04-06 19:49:07 +02:00
};
nativeBuildInputs = [ git go hugo ];
buildPhase = "hugo -d $out";
outputHashAlgo = "sha256";
outputHashMode = "recursive";
2024-04-15 14:24:16 +02:00
outputHash = "sha256-PQzuhxRrruBbEfUjhPGPeJkJ6vsbMJ+5Ojg4t11oNV8=";
2024-04-06 16:44:54 +02:00
}