opentofu: 1.11.3 -> 1.11.4 (#482459)

This commit is contained in:
Nick Cao
2026-01-21 23:43:12 +00:00
committed by GitHub
+6 -2
View File
@@ -16,13 +16,13 @@
let
package = buildGoModule rec {
pname = "opentofu";
version = "1.11.3";
version = "1.11.4";
src = fetchFromGitHub {
owner = "opentofu";
repo = "opentofu";
tag = "v${version}";
hash = "sha256-r5GwFWzXYXX06swmBS+yXIjKwSMArPYd5h+xJlZBdy4=";
hash = "sha256-Yz+T1B97s2bdJIhJmGGly9KZx1gOvsbavF+HbJh+8Tg=";
};
vendorHash = "sha256-WO5OtKwluks5nuSHJ4NO1+EKhtCrJE9MuMGmu5fYKM4=";
@@ -33,6 +33,10 @@ let
"github.com/opentofu/opentofu/version.dev=no"
];
postPatch = ''
substituteInPlace go.mod --replace-fail 'go 1.25.6' 'go 1.25.5'
'';
nativeBuildInputs = [ installShellFiles ];
patches = [ ./provider-path-0_15.patch ];