about summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2023-12-09 00:58:24 +0100
committerGitHub <noreply@github.com>2023-12-09 00:58:24 +0100
commit7f2d865a7c8200ee05e215731da368f7c2b7341c (patch)
tree65b99c210b424d4d2fc6f9346a74d862cfa32aba /pkgs/tools
parent2709babda61d9618d0d59cd22600351e0e1459f8 (diff)
parent863559bf26ccf6f240b8b4f8ca86552da3b9cd2a (diff)
downloadnixlib-7f2d865a7c8200ee05e215731da368f7c2b7341c.tar
nixlib-7f2d865a7c8200ee05e215731da368f7c2b7341c.tar.gz
nixlib-7f2d865a7c8200ee05e215731da368f7c2b7341c.tar.bz2
nixlib-7f2d865a7c8200ee05e215731da368f7c2b7341c.tar.lz
nixlib-7f2d865a7c8200ee05e215731da368f7c2b7341c.tar.xz
nixlib-7f2d865a7c8200ee05e215731da368f7c2b7341c.tar.zst
nixlib-7f2d865a7c8200ee05e215731da368f7c2b7341c.zip
Merge pull request #272598 from kashw2/infracosts
infracost: 0.10.30 -> 0.10.31
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/misc/infracost/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/misc/infracost/default.nix b/pkgs/tools/misc/infracost/default.nix
index 6b0f4edd5a77..ce555facf410 100644
--- a/pkgs/tools/misc/infracost/default.nix
+++ b/pkgs/tools/misc/infracost/default.nix
@@ -2,15 +2,15 @@
 
 buildGoModule rec {
   pname = "infracost";
-  version = "0.10.30";
+  version = "0.10.31";
 
   src = fetchFromGitHub {
     owner = "infracost";
     rev = "v${version}";
     repo = "infracost";
-    sha256 = "sha256-YHhaOf2MNrFHv29pEnhkOjFH30Mi5Oi6gYkSH6PZhU4=";
+    sha256 = "sha256-slZFZu+NEOLy4oxdcZwW2OhabGxE/RPsfEhO0W6+gT0=";
   };
-  vendorHash = "sha256-yjPtNTfkL8+fkmXW98SnpboMqdsjQYCif65sn0jjLgc=";
+  vendorHash = "sha256-o8CMISBU5C/SDexeEiwnxTC9hvbCWUrm6a/2TOE9Bmw=";
 
   ldflags = [ "-s" "-w" "-X github.com/infracost/infracost/internal/version.Version=v${version}" ];