steampipePackages.steampipe-plugins-azure: init at 1.0.0

This commit is contained in:
Pete Erickson 2024-10-27 22:44:40 -05:00 committed by Anthony Roussel
parent 92d81bef32
commit de2f9ce743
2 changed files with 52 additions and 0 deletions

View File

@ -2,5 +2,6 @@
{
steampipe-plugin-aws = callPackage ./steampipe-plugin-aws { };
steampipe-plugin-azure = callPackage ./steampipe-plugin-azure { };
steampipe-plugin-github = callPackage ./steampipe-plugin-github { };
}

View File

@ -0,0 +1,51 @@
{
buildGoModule,
fetchFromGitHub,
lib,
nix-update-script,
steampipe,
}:
buildGoModule rec {
pname = "steampipe-plugin-azure";
version = "1.0.0";
src = fetchFromGitHub {
owner = "turbot";
repo = "steampipe-plugin-azure";
rev = "refs/tags/v${version}";
hash = "sha256-tIAVYZ+gZnvUJPDYP1WqZb7kAZ1f0YXJ4VWy2Cw2QMo=";
};
vendorHash = "sha256-M97SnuWVB7Xw2xXRLBiGCWgATZCYh0BoV4bzhF57x5o=";
ldflags = [
"-s"
"-w"
];
doCheck = true;
installPhase = ''
runHook preInstall
mkdir -p $out
cp $GOPATH/bin/steampipe-plugin-azure $out/steampipe-plugin-azure.plugin
cp -R docs $out/.
cp -R config $out/.
runHook postInstall
'';
passthru.updateScript = nix-update-script { };
meta = {
changelog = "https://github.com/turbot/steampipe-plugin-azure/blob/v${version}/CHANGELOG.md";
description = "Azure Plugin for Steampipe";
homepage = "https://github.com/turbot/steampipe-plugin-azure";
license = lib.licenses.apsl20;
longDescription = "Use SQL to instantly query Azure resources across regions and subscriptions.";
maintainers = with lib.maintainers; [ petee ];
platforms = steampipe.meta.platforms;
};
}