about summary refs log tree commit diff
diff options
context:
space:
mode:
authorNick Cao <nickcao@nichi.co>2024-04-30 14:33:32 -0400
committerteutat3s <10206665+teutat3s@users.noreply.github.com>2024-05-02 20:03:19 +0200
commiteab6b4cb61662be34494f333e9ca51f5c425255c (patch)
tree775d346c5b4dcf6f0911527b3d42e6a4a2b05ec7
parentd8f73b102ab4b8b0866797bb4e43dcf734eb9aa3 (diff)
opentofu: 1.7.0-beta1 -> 1.7.0
Diff: https://github.com/opentofu/opentofu/compare/v1.7.0-beta1...v1.7.0

Changelog: https://github.com/opentofu/opentofu/blob/v1.7.0/CHANGELOG.md
(cherry picked from commit aadbdc7d48913fe887fbadeb374203e463457f7d)
-rw-r--r--pkgs/applications/networking/cluster/opentofu/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/networking/cluster/opentofu/default.nix b/pkgs/applications/networking/cluster/opentofu/default.nix
index c3f87d6e6ac7..a31de9d98703 100644
--- a/pkgs/applications/networking/cluster/opentofu/default.nix
+++ b/pkgs/applications/networking/cluster/opentofu/default.nix
@@ -14,16 +14,16 @@
 let
   package =  buildGoModule rec {
     pname = "opentofu";
-    version = "1.7.0-beta1";
+    version = "1.7.0";
 
     src = fetchFromGitHub {
       owner = "opentofu";
       repo = "opentofu";
       rev = "v${version}";
-      hash = "sha256-PSAHQv8po5bdWiHVpnnyqk8nRVBxa8EvETjZeYzl/pE=";
+      hash = "sha256-e0u8aFua3oMsBafwRPYuWQ9M6DtC7f9LlCDGJ5vdAWE=";
     };
 
-    vendorHash = "sha256-hMdYC/nn3hk8GUfG6/Pp4ajwKA+Uc+kCeKROimDZZ9Q=";
+    vendorHash = "sha256-cML742FfWFNIwGyIdRd3JWcfDlOXnJVgUXz4j5fa74Q=";
     ldflags = [ "-s" "-w" "-X" "github.com/opentofu/opentofu/version.dev=no" ];
 
     postConfigure = ''