Merge pull request #181677 from flurie/steampipe-bump

steampipe: 0.15.0 -> 0.15.3
This commit is contained in:
ajs124 2022-07-31 14:31:52 +02:00 committed by GitHub
commit d0ea2452a2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,24 +2,28 @@
buildGoModule rec {
pname = "steampipe";
version = "0.15.0";
version = "0.15.3";
src = fetchFromGitHub {
owner = "turbot";
repo = "steampipe";
rev = "v${version}";
sha256 = "sha256-ly64p8shbhixLbK9hpDNYhmBKoAt4iXB//pdFSIYZMc=";
sha256 = "sha256-7TIEdT+s6Am2hPiMPKH+YioNfsCmLVZg6BQiO94Xiu0=";
};
vendorSha256 = "sha256-/VU8VNDqU7CMm/lIBqTChyUWP4svVCgsw0CBcp/u+U0=";
vendorSha256 = "sha256-x57IvMKSE2F5bGTC8ao+wLJmYlz8nMh4SoMhtGlwQyE=";
proxyVendor = true;
patchPhase = ''
# 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"';
'';
nativeBuildInputs = [ installShellFiles ];
ldflags = [
"-s"
"-w"
];
ldflags = [ "-s" "-w" ];
postInstall = ''
INSTALL_DIR=$(mktemp -d)
@ -30,7 +34,6 @@ buildGoModule rec {
'';
meta = with lib; {
broken = stdenv.isDarwin;
homepage = "https://steampipe.io/";
description = "select * from cloud;";
license = licenses.agpl3;