about summary refs log tree commit diff
path: root/pkgs/tools/misc/steampipe
diff options
context:
space:
mode:
authorDaniel Nagy <danielnagy@posteo.de>2022-10-01 11:54:00 +0200
committerDaniel Nagy <danielnagy@posteo.de>2022-10-01 20:52:57 +0200
commitf88dfed48e9f95536214070dfce6981c6a1b7ed2 (patch)
tree90a6d54eb22218ecf488d8de8da9a5996cad32a0 /pkgs/tools/misc/steampipe
parent90c4b93dad717b0dfc7bfd8cad82d69eabd71272 (diff)
steampipe: 0.15.3 -> 0.16.4
Diffstat (limited to 'pkgs/tools/misc/steampipe')
-rw-r--r--pkgs/tools/misc/steampipe/default.nix9
1 files changed, 6 insertions, 3 deletions
diff --git a/pkgs/tools/misc/steampipe/default.nix b/pkgs/tools/misc/steampipe/default.nix
index 42fb4a451f30d..26869c3ee01d0 100644
--- a/pkgs/tools/misc/steampipe/default.nix
+++ b/pkgs/tools/misc/steampipe/default.nix
@@ -2,23 +2,25 @@
 
 buildGoModule rec {
   pname = "steampipe";
-  version = "0.15.3";
+  version = "0.16.4";
 
   src = fetchFromGitHub {
     owner = "turbot";
     repo = "steampipe";
     rev = "v${version}";
-    sha256 = "sha256-7TIEdT+s6Am2hPiMPKH+YioNfsCmLVZg6BQiO94Xiu0=";
+    sha256 = "sha256-awZlA02lKYpFdvCsGUC8Blv8FHek5XskkljseDGjDmk=";
   };
 
-  vendorSha256 = "sha256-x57IvMKSE2F5bGTC8ao+wLJmYlz8nMh4SoMhtGlwQyE=";
+  vendorSha256 = "sha256-6l3bBxGhdZGIXmdzgF44TGZQqT6gSUHSwOAE2SlgLgg=";
   proxyVendor = true;
 
   patchPhase = ''
+    runHook prePatch
     # Patch test that relies on looking up homedir in user struct to prefer ~
     substituteInPlace pkg/steampipeconfig/shared_test.go \
       --replace '"github.com/turbot/go-kit/helpers"' "" \
       --replace 'filepaths.SteampipeDir, _ = helpers.Tildefy("~/.steampipe")' 'filepaths.SteampipeDir = "~/.steampipe"';
+    runHook postPatch
   '';
 
   nativeBuildInputs = [ installShellFiles ];
@@ -38,5 +40,6 @@ buildGoModule rec {
     description = "select * from cloud;";
     license = licenses.agpl3;
     maintainers = with maintainers; [ hardselius ];
+    changelog = "https://github.com/turbot/steampipe/blob/v${version}/CHANGELOG.md";
   };
 }