mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-10-29 21:51:49 +00:00
steampipePackages.steampipe-plugins-azure: init at 1.0.0
This commit is contained in:
parent
92d81bef32
commit
de2f9ce743
@ -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 { };
|
||||
}
|
||||
|
@ -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;
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user