diff options
author | arathunku <m@forys.de> | 2024-06-25 11:19:27 +0200 |
---|---|---|
committer | arathunku <m@forys.de> | 2024-06-25 11:21:02 +0200 |
commit | 6b8f92c020ae444d3952991eb4b5c39a6ad3ea87 (patch) | |
tree | dfcdc5473a6d52d2acdd72ee590f97d0983e7e71 | |
parent | 11f1389b1d90b33d2260db2fe03c0e45ed5d39a7 (diff) |
terramate: 0.8.4 -> 0.9.0
-rw-r--r-- | pkgs/development/tools/misc/terramate/default.nix | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/tools/misc/terramate/default.nix b/pkgs/development/tools/misc/terramate/default.nix index 880183c8bdf60..2c9c8f5de207f 100644 --- a/pkgs/development/tools/misc/terramate/default.nix +++ b/pkgs/development/tools/misc/terramate/default.nix @@ -6,16 +6,16 @@ buildGoModule rec { pname = "terramate"; - version = "0.8.4"; + version = "0.9.0"; src = fetchFromGitHub { owner = "terramate-io"; repo = "terramate"; rev = "v${version}"; - hash = "sha256-jcmOS81iPzy1ul0Cj/SiJk84AUIq7mLI+CmspuPit+o="; + hash = "sha256-052pw091okx564tzN3Ookw2xZmW12svI49Ll5MIWMu0="; }; - vendorHash = "sha256-Na2XDPSwgwWTQrweslAtSOh2+B/ZFaPIdy8ssAFWkGs="; + vendorHash = "sha256-lJL8THy0wXrKTSPdnBxollgZkaHMhvw3MbuiacyR6GE="; # required for version info nativeBuildInputs = [ git ]; @@ -23,7 +23,7 @@ buildGoModule rec { ldflags = [ "-extldflags" "-static" ]; # Disable failing E2E tests preventing the package from building - excludedPackages = [ "./cmd/terramate/e2etests/cloud" "./cmd/terramate/e2etests/core" ]; + excludedPackages = [ "./e2etests/cloud" "./e2etests/core" ]; meta = with lib; { description = "Adds code generation, stacks, orchestration, change detection, data sharing and more to Terraform"; |