Merge pull request #180775 from mfenniak/steampipe-0.15.0

steampipe: 0.13.4 -> 0.15.0
This commit is contained in:
Robert Scott 2022-07-09 13:44:57 +01:00 committed by GitHub
commit 81f94c0938
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,17 +1,17 @@
{ stdenv, lib, buildGoModule, fetchFromGitHub, installShellFiles }:
{ stdenv, lib, buildGo118Module, fetchFromGitHub, installShellFiles }:
buildGoModule rec {
buildGo118Module rec {
pname = "steampipe";
version = "0.13.4";
version = "0.15.0";
src = fetchFromGitHub {
owner = "turbot";
repo = "steampipe";
rev = "v${version}";
sha256 = "sha256-Qq8i/uU2TtrEpvTPFmnZdku2vNo5O240dAT2OQKel1U=";
sha256 = "sha256-ly64p8shbhixLbK9hpDNYhmBKoAt4iXB//pdFSIYZMc=";
};
vendorSha256 = "sha256-pEQG9BHhsVDVSOoKJBocLXMLjmP72RM+GXz4nYD4D7s=";
vendorSha256 = "sha256-/VU8VNDqU7CMm/lIBqTChyUWP4svVCgsw0CBcp/u+U0=";
proxyVendor = true;
nativeBuildInputs = [ installShellFiles ];