steampipe: 0.13.4 -> 0.15.0

Changed to buildGo118Module as steampipe 0.14+ requires Go 1.18
This commit is contained in:
Mathieu Fenniak 2022-07-08 15:31:37 -06:00
parent 1e12b9292c
commit 2f784861e1

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 ];