Skip to content

Commit

Permalink
steampipePackages.steampipe-plugins-azure: init at 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
PeteE committed Oct 29, 2024
1 parent 4258112 commit 1031b87
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 0 deletions.
1 change: 1 addition & 0 deletions pkgs/tools/misc/steampipe-packages/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 { };
}
Original file line number Diff line number Diff line change
@@ -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;
};
}

0 comments on commit 1031b87

Please sign in to comment.