52 lines
1.2 KiB
Nix
52 lines
1.2 KiB
Nix
|
{
|
||
|
buildGoModule,
|
||
|
fetchFromGitHub,
|
||
|
lib,
|
||
|
nix-update-script,
|
||
|
steampipe,
|
||
|
}:
|
||
|
|
||
|
buildGoModule rec {
|
||
|
pname = "steampipe-plugin-github";
|
||
|
version = "0.44.0";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "turbot";
|
||
|
repo = "steampipe-plugin-github";
|
||
|
rev = "refs/tags/v${version}";
|
||
|
hash = "sha256-XscJqrtnvA4poCcUspPIsYIrfI22o/PLeNPBl8WSl/E=";
|
||
|
};
|
||
|
|
||
|
vendorHash = "sha256-EVcPpFzRd9EmyuPqZBQjSNEB4BEbU8Km6Y/f+ulfK5s=";
|
||
|
|
||
|
ldflags = [
|
||
|
"-s"
|
||
|
"-w"
|
||
|
];
|
||
|
|
||
|
doCheck = true;
|
||
|
|
||
|
installPhase = ''
|
||
|
runHook preInstall
|
||
|
|
||
|
mkdir -p $out
|
||
|
cp $GOPATH/bin/steampipe-plugin-github $out/steampipe-plugin-github.plugin
|
||
|
cp -R docs $out/.
|
||
|
cp -R config $out/.
|
||
|
|
||
|
runHook postInstall
|
||
|
'';
|
||
|
|
||
|
passthru.updateScript = nix-update-script { };
|
||
|
|
||
|
meta = {
|
||
|
changelog = "https://github.com/turbot/steampipe-plugin-github/blob/v${version}/CHANGELOG.md";
|
||
|
description = "GitHub Plugin for Steampipe";
|
||
|
homepage = "https://github.com/turbot/steampipe-plugin-github";
|
||
|
license = lib.licenses.apsl20;
|
||
|
longDescription = "Use SQL to instantly query repositories, users, gists and more from GitHub.";
|
||
|
maintainers = with lib.maintainers; [ anthonyroussel ];
|
||
|
platforms = steampipe.meta.platforms;
|
||
|
};
|
||
|
}
|