about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/tools/buf/default.nix
blob: fc232d55da6d91fa684fc802a85f216328a5e586 (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
26
27
28
29
30
31
32
33
34
35
36
{ lib
, buildGoModule
, fetchFromGitHub
, protobuf
}:

buildGoModule rec {
  pname = "buf";
  version = "0.40.0";

  src = fetchFromGitHub {
    owner = "bufbuild";
    repo = pname;
    rev = "v${version}";
    sha256 = "sha256-N6o+1cfer8rgKJ3+CL25axJSjGV/YSG1sLIHXJzsC6o=";
  };

  patches = [
    ./skip_test_requiring_network.patch
  ];

  preCheck = ''
    export PATH=$PATH:$GOPATH/bin
  '';

  nativeBuildInputs = [ protobuf ];

  vendorSha256 = "sha256-vl+WqtpegoAvylx/lcyfJk8DAOub8U4Lx3Pe3eW4M/E=";

  meta = with lib; {
    description = "Create consistent Protobuf APIs that preserve compatibility and comply with design best-practices";
    homepage = "https://buf.build";
    license = licenses.asl20;
    maintainers = with maintainers; [ raboof ];
  };
}