terramate: 0.8.4 -> 0.9.0

This commit is contained in:
arathunku 2024-06-25 11:19:27 +02:00
parent 11f1389b1d
commit 6b8f92c020
No known key found for this signature in database
GPG Key ID: BE6C9FE553F0E2C5

View File

@ -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";