From 09e02c2f1cefa5fc91198409ee75bb1a39d46c02 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Fran=C3=A7ois=20Roche?= Date: Mon, 15 Apr 2024 17:47:10 +0200 Subject: [PATCH] Fix buildGoModule vendor hash attribute (#58) We cannot use the `vendorSha256` attribute in the `buildGoModule` function anymore. --- default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/default.nix b/default.nix index 7155bb2..5513f9e 100644 --- a/default.nix +++ b/default.nix @@ -2,7 +2,7 @@ pkgs.buildGoModule { name = "systemd-vaultd"; src = ./.; - vendorSha256 = null; + vendorHash = null; meta = with pkgs.lib; { description = "A proxy for secrets between systemd services and vault"; homepage = "https://github.com/numtide/systemd-vaultd";