c7e6337bd0
GitOrigin-RevId: 08e4dc3a907a6dfec8bb3bbf1540d8abbffea22b
34 lines
775 B
Nix
34 lines
775 B
Nix
{ buildGoModule
|
|
, fetchFromGitHub
|
|
, lib
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "bazel-gazelle";
|
|
version = "0.30.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "bazelbuild";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-95nA6IEuAIh/6J6G2jADz3UKpQj5wybQ1HpaHSI+QRo=";
|
|
};
|
|
|
|
vendorHash = null;
|
|
|
|
doCheck = false;
|
|
|
|
subPackages = [ "cmd/gazelle" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/bazelbuild/bazel-gazelle";
|
|
description = ''
|
|
Gazelle is a Bazel build file generator for Bazel projects. It natively
|
|
supports Go and protobuf, and it may be extended to support new languages
|
|
and custom rule sets.
|
|
'';
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ kalbasit ];
|
|
mainProgram = "gazelle";
|
|
};
|
|
}
|