depot/third_party/nixpkgs/pkgs/tools/misc/steampipe-packages/steampipe-plugin-aws/default.nix

52 lines
1.2 KiB
Nix
Raw Normal View History

{
buildGoModule,
fetchFromGitHub,
lib,
nix-update-script,
steampipe,
}:
buildGoModule rec {
pname = "steampipe-plugin-aws";
version = "0.147.0";
src = fetchFromGitHub {
owner = "turbot";
repo = "steampipe-plugin-aws";
rev = "refs/tags/v${version}";
hash = "sha256-62jGLJGc6tip6Azl5EF1vefJ6IC1+9yMB3oBKjAXWV0=";
};
vendorHash = "sha256-4MwISeCx/YbJSeQ5OJFIZf1SnK9aD2Eat6xKI7ZtYLk=";
ldflags = [
"-s"
"-w"
];
doCheck = true;
installPhase = ''
runHook preInstall
mkdir -p $out
cp $GOPATH/bin/steampipe-plugin-aws $out/steampipe-plugin-aws.plugin
cp -R docs $out/.
cp -R config $out/.
runHook postInstall
'';
passthru.updateScript = nix-update-script { };
meta = {
changelog = "https://github.com/turbot/steampipe-plugin-aws/blob/v${version}/CHANGELOG.md";
description = "AWS Plugin for Steampipe";
homepage = "https://github.com/turbot/steampipe-plugin-aws";
license = lib.licenses.apsl20;
longDescription = "Use SQL to instantly query AWS resources across regions and accounts.";
maintainers = with lib.maintainers; [ anthonyroussel ];
platforms = steampipe.meta.platforms;
};
}