mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 19:45:54 +00:00
27 lines
650 B
Nix
27 lines
650 B
Nix
{ buildGoModule, fetchFromGitHub, lib }:
|
|
|
|
buildGoModule rec {
|
|
pname = "bazel-kazel";
|
|
version = "0.1.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "kubernetes";
|
|
repo = "repo-infra";
|
|
rev = "v${version}";
|
|
sha256 = "0d59kf0y12sa1bki7gzcb2nzppwj3gxlv133bsnl9gc8vx1d8ldg";
|
|
};
|
|
|
|
vendorSha256 = "1pzkjh4n9ai8yqi98bkdhicjdr2l8j3fckl5n90c2gdcwqyxvgkf";
|
|
|
|
doCheck = false;
|
|
|
|
subPackages = [ "cmd/kazel" ];
|
|
|
|
meta = with lib; {
|
|
description = "kazel - a BUILD file generator for go and bazel";
|
|
homepage = "https://github.com/kubernetes/repo-infra";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ kalbasit ];
|
|
};
|
|
}
|