steampipe: 2.3.2 -> 2.3.4

Diff: https://github.com/turbot/steampipe/compare/v2.3.2...v2.3.4
This commit is contained in:
R. Ryantm
2025-12-20 22:00:29 +01:00
committed by Anthony Roussel
parent d2d63347f5
commit 712221688f
+7 -3
View File
@@ -11,7 +11,7 @@
buildGoModule rec {
pname = "steampipe";
version = "2.3.2";
version = "2.3.4";
env.CGO_ENABLED = 0;
@@ -19,10 +19,10 @@ buildGoModule rec {
owner = "turbot";
repo = "steampipe";
tag = "v${version}";
hash = "sha256-RAMCbajhXzJDeDuNy0rE6jJDkw3NOw0dC4jLafkNmJc=";
hash = "sha256-6p3GbPQ60DK4V565ipZq3OZDB6Tu/5tynhka8EQQUf4=";
};
vendorHash = "sha256-1o7ANCyz19WSIkYYoA0DpYzkY2qBXHHSfAGrAG2+k88=";
vendorHash = "sha256-A4STD+EaUoYNgLwvD8B6IySE+wu+OsTydTukEnvWKjw=";
proxyVendor = true;
postPatch = ''
@@ -53,6 +53,10 @@ buildGoModule rec {
skippedTests = [
# panic: could not create backups directory: mkdir /var/empty/.steampipe: operation not permitted
"TestTrimBackups"
# Requires network access
"TestVersionCheckerBodyReadFailure"
"TestVersionCheckerNetworkFailures"
"TestVersionCheckerTimeout"
];
in
[ "-skip=^${builtins.concatStringsSep "$|^" skippedTests}$" ];