From 9245945322956cb50b7774a120520dfad60ee8ce Mon Sep 17 00:00:00 2001 From: 06kellyjac Date: Wed, 25 May 2022 12:36:31 +0100 Subject: [PATCH] infracost: 0.9.22 -> 0.10.0 --- pkgs/tools/misc/infracost/default.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/misc/infracost/default.nix b/pkgs/tools/misc/infracost/default.nix index 4f25b996f78d..172bcc074a5b 100644 --- a/pkgs/tools/misc/infracost/default.nix +++ b/pkgs/tools/misc/infracost/default.nix @@ -1,16 +1,16 @@ -{ lib, buildGoModule, fetchFromGitHub, installShellFiles, terraform }: +{ lib, buildGoModule, fetchFromGitHub, installShellFiles }: buildGoModule rec { pname = "infracost"; - version = "0.9.22"; + version = "0.10.0"; src = fetchFromGitHub { owner = "infracost"; rev = "v${version}"; repo = "infracost"; - sha256 = "sha256-JYC5wsv3JIqzv2woHits3wMpvPZ70lVrAZDh/DB1SVE="; + sha256 = "sha256-soMATF2lVFFwdKjqm7YiQ66MsjOk2pyrohFlHMMGiW0="; }; - vendorSha256 = "sha256-/B3hXHRNk6DJ6iC0RalsoWsb6vK0md8asnLkhSAeHXU="; + vendorSha256 = "sha256-gPNQQQvHQch4Qa4c6OtS26lohhigzspB5M5H4NvvJY0="; ldflags = [ "-s" "-w" "-X github.com/infracost/infracost/internal/version.Version=v${version}" ]; @@ -26,6 +26,7 @@ buildGoModule rec { # checkFlags aren't correctly passed through via buildGoModule so we use buildFlagsArray # -short only runs the unit-tests tagged short + # move to checkFlags after https://github.com/NixOS/nixpkgs/pull/173702 buildFlagsArray+="-short" # remove tests that require networking