opentofu: 1.7.3 -> 1.8.0

This commit is contained in:
R. Ryantm 2024-07-30 01:44:48 +00:00 committed by zowoq
parent 04404c0900
commit afe93a2cc1

View File

@ -14,16 +14,16 @@
let
package = buildGoModule rec {
pname = "opentofu";
version = "1.7.3";
version = "1.8.0";
src = fetchFromGitHub {
owner = "opentofu";
repo = "opentofu";
rev = "v${version}";
hash = "sha256-xP2TvL9n1mFfk5krtOTKGL6i4e+/xGLkBsMwZXiQTok=";
hash = "sha256-c12CkfJyA5NjsOm/85QS41RfpBRW4pDX/vH6lk+d+9M=";
};
vendorHash = "sha256-cML742FfWFNIwGyIdRd3JWcfDlOXnJVgUXz4j5fa74Q=";
vendorHash = "sha256-cM2DSP2ss3vleUhPBIdyxKeWJxtHpdjL5b5HVS/iC6o=";
ldflags = [ "-s" "-w" "-X" "github.com/opentofu/opentofu/version.dev=no" ];
postConfigure = ''