summary refs log tree commit diff
path: root/pkgs/development/tools/build-managers/bazel/buildtools/default.nix
blob: 52fec3f131b9ba3f6c9fce33fd003fe9720d29ca (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ stdenv, buildGoPackage, fetchFromGitHub }:

buildGoPackage rec {
  name = "bazel-buildtools-unstable-${version}";
  version = "2018-05-24";

  goPackagePath = "github.com/bazelbuild/buildtools";

  src = fetchFromGitHub {
    owner = "bazelbuild";
    repo = "buildtools";
    rev = "588d90030bc8054b550967aa45a8a8d170deba0b";
    sha256 = "18q1z138545kh4s5k0jcqwhpzc1w7il4x00l7yzv9wq8bg1vn1rv";
  };

  goDeps = ./deps.nix;

  meta = with stdenv.lib; {
    description = "This derivation contains developer tools for working with Google's bazel buildtool.";
    homepage = https://github.com/bazelbuild/buildtools;
    license = licenses.asl20;
    maintainers = with maintainers; [ uri-canva ];
    platforms = platforms.all;
  };
}