about summary refs log tree commit diff
path: root/pkgs/applications/networking/cluster/terraform
diff options
context:
space:
mode:
authorzowoq <59103226+zowoq@users.noreply.github.com>2023-02-16 07:56:55 +1000
committerzowoq <59103226+zowoq@users.noreply.github.com>2023-02-16 10:22:15 +1000
commit964dc8e4082226744aa4f81e93c189c28a5a8ce6 (patch)
tree9014c05036e5819fa88b785766ba43e04c891923 /pkgs/applications/networking/cluster/terraform
parent383cd683b68f00e24ebd3bedba6eb8d8a20f9265 (diff)
downloadnixlib-964dc8e4082226744aa4f81e93c189c28a5a8ce6.tar
nixlib-964dc8e4082226744aa4f81e93c189c28a5a8ce6.tar.gz
nixlib-964dc8e4082226744aa4f81e93c189c28a5a8ce6.tar.bz2
nixlib-964dc8e4082226744aa4f81e93c189c28a5a8ce6.tar.lz
nixlib-964dc8e4082226744aa4f81e93c189c28a5a8ce6.tar.xz
nixlib-964dc8e4082226744aa4f81e93c189c28a5a8ce6.tar.zst
nixlib-964dc8e4082226744aa4f81e93c189c28a5a8ce6.zip
terraform: 1.3.8 -> 1.3.9
https://github.com/hashicorp/terraform/releases/tag/v1.3.9
Diffstat (limited to 'pkgs/applications/networking/cluster/terraform')
-rw-r--r--pkgs/applications/networking/cluster/terraform/default.nix14
1 files changed, 7 insertions, 7 deletions
diff --git a/pkgs/applications/networking/cluster/terraform/default.nix b/pkgs/applications/networking/cluster/terraform/default.nix
index 81f9159c230a..6a722b80b834 100644
--- a/pkgs/applications/networking/cluster/terraform/default.nix
+++ b/pkgs/applications/networking/cluster/terraform/default.nix
@@ -12,18 +12,18 @@
 }:
 
 let
-  generic = { version, sha256, vendorSha256 ? null, ... }@attrs:
-    let attrs' = builtins.removeAttrs attrs [ "version" "sha256" "vendorSha256" ];
+  generic = { version, hash, vendorHash ? null, ... }@attrs:
+    let attrs' = builtins.removeAttrs attrs [ "version" "hash" "vendorHash" ];
     in
     buildGoModule ({
       pname = "terraform";
-      inherit version vendorSha256;
+      inherit version vendorHash;
 
       src = fetchFromGitHub {
         owner = "hashicorp";
         repo = "terraform";
         rev = "v${version}";
-        inherit sha256;
+        inherit hash;
       };
 
       ldflags = [ "-s" "-w" ];
@@ -168,9 +168,9 @@ rec {
   mkTerraform = attrs: pluggable (generic attrs);
 
   terraform_1 = mkTerraform {
-    version = "1.3.8";
-    sha256 = "sha256-AXLk5s3qu3QZ1aXx/FwPNq3hM26skBj0wyn/x8nVMkE=";
-    vendorSha256 = "sha256-CE6jNBvM0980+R0e5brK5lMrkad+91qTt9mp2h3NZyY=";
+    version = "1.3.9";
+    hash = "sha256-gwuUdO9m4Q2tFRLSVTbcsclOq9jcbQU4JV9nIElTkQ4=";
+    vendorHash = "sha256-CE6jNBvM0980+R0e5brK5lMrkad+91qTt9mp2h3NZyY=";
     patches = [ ./provider-path-0_15.patch ];
     passthru = {
       inherit plugins;