From de0202b025d93f58fe181f79d15d46ebd3dffe43 Mon Sep 17 00:00:00 2001 From: Leon Vatthauer Date: Sat, 6 Apr 2024 19:07:23 +0200 Subject: [PATCH] try fix nix --- default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/default.nix b/default.nix index bc62bc9..3c34139 100644 --- a/default.nix +++ b/default.nix @@ -1,10 +1,12 @@ { stdenv, git, go, hugo }: stdenv.mkDerivation { name = "resumee-website"; + version = "1.0"; src = "./website"; nativeBuildInputs = [ git go hugo ]; buildPhase = "hugo -d $out"; outputHashAlgo = "sha256"; outputHashMode = "recursive"; outputHash = "sha256-k46/umNJ9Q8FsZDCRvG/YmyU3IAkL5bzTvhWxdbNXso="; + sourceRoot = name; }