about summary refs log tree commit diff
diff options
context:
space:
mode:
authorNick Cao <nickcao@nichi.co>2024-03-14 10:22:42 -0700
committerteutat3s <10206665+teutat3s@users.noreply.github.com>2024-05-02 20:03:16 +0200
commit7e2a49ac1e806e318b8112c0718507dfa23876a4 (patch)
tree2800d5c86fee71cff04ed0a3285b607be27cffe7
parent31cf6d1a2debefa1e09ce45bb61e23394ff69ab9 (diff)
opentofu: 1.6.2 -> 1.7.0-alpha1
Diff: https://github.com/opentofu/opentofu/compare/v1.6.2...v1.7.0-alpha1

Changelog: https://github.com/opentofu/opentofu/blob/v1.7.0-alpha1/CHANGELOG.md
(cherry picked from commit 25a4a18d8676fbb51b671cb75b893d2d37ce6a09)
-rw-r--r--pkgs/applications/networking/cluster/opentofu/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/applications/networking/cluster/opentofu/default.nix b/pkgs/applications/networking/cluster/opentofu/default.nix
index 5bf396ffe977..7e7c3ba4831a 100644
--- a/pkgs/applications/networking/cluster/opentofu/default.nix
+++ b/pkgs/applications/networking/cluster/opentofu/default.nix
@@ -14,15 +14,16 @@
 let
   package =  buildGoModule rec {
     pname = "opentofu";
-    version = "1.6.2";
+    version = "1.7.0-alpha1";
 
     src = fetchFromGitHub {
       owner = "opentofu";
       repo = "opentofu";
       rev = "v${version}";
-      hash = "sha256-CYiwn2NDIAx30J8tmbrV45dbCIGoA3U+yBdMj4RX5Ho=";
+      hash = "sha256-tg3RsYWTvAL5sVMPHCwzTHe8EipdS3QdYmv6Jah1M1o=";
     };
-    vendorHash = "sha256-kSm5RZqQRgbmPaKt5IWmuMhHwAu+oJKTX1q1lbE7hWk=";
+
+    vendorHash = "sha256-N9csHGxUg8y+PshjPzEFOsdGF1cZch5UW3ISofQX9oE=";
     ldflags = [ "-s" "-w" "-X" "github.com/opentofu/opentofu/version.dev=no" ];
 
     postConfigure = ''