mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 17:03:01 +00:00
35 lines
773 B
Nix
35 lines
773 B
Nix
{ buildGoModule
|
|
, fetchFromGitHub
|
|
, lib
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "bazel-gazelle";
|
|
version = "0.37.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "bazelbuild";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-YtgqhwPpkw+lPgsBDCDxkcNsSu1/ZoIhXMuQeZgLXNU=";
|
|
};
|
|
|
|
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";
|
|
};
|
|
}
|