vendorHash: make it overridable

This commit is contained in:
Jörg Thalheim 2023-07-15 08:19:01 +02:00 committed by mergify[bot]
parent 5fc5cddafd
commit 62a7c95c8c
3 changed files with 9 additions and 9 deletions

View file

@ -1,4 +1,4 @@
{ stdenv, lib, buildGoModule, path, pkgs, vendorSha256, go }:
{ lib, buildGoModule, path, pkgs, vendorHash, go }:
buildGoModule {
pname = "sops-install-secrets";
version = "0.0.1";
@ -29,7 +29,7 @@ buildGoModule {
fi
'';
inherit vendorSha256;
inherit vendorHash;
meta = with lib; {
description = "Atomic secret provisioning based on sops";