Unverified Commit 40a0b930 authored by Marcus Ramberg's avatar Marcus Ramberg Committed by GitHub
Browse files

buf: 1.45.0 -> 1.46.0 (#352849)

parents 8e8f3173 b3727e43
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -10,16 +10,16 @@

buildGoModule rec {
  pname = "buf";
  version = "1.45.0";
  version = "1.46.0";

  src = fetchFromGitHub {
    owner = "bufbuild";
    repo = "buf";
    rev = "v${version}";
    hash = "sha256-zmk9o0P4BaUqng9E/s6KKWntwS4NmTg/xPTrQruTQSo=";
    hash = "sha256-XLVEZYQEq9qXrH7EytoHO3QExOAZX6N57amcKBy5ORE=";
  };

  vendorHash = "sha256-NMrPBUwbDsXW8tc5l1Liqd19+v2RrXf6dlcwVnHxVXQ=";
  vendorHash = "sha256-P1MNwpz3UbaQHLFv5mMs9d0xulitfAD90T1jWxVi5/k=";

  patches = [
    # Skip a test that requires networking to be available to work.
@@ -75,12 +75,12 @@ buildGoModule rec {

  passthru.tests.version = testers.testVersion { package = buf; };

  meta = with lib; {
  meta = {
    homepage = "https://buf.build";
    changelog = "https://github.com/bufbuild/buf/releases/tag/v${version}";
    description = "Create consistent Protobuf APIs that preserve compatibility and comply with design best-practices";
    license = licenses.asl20;
    maintainers = with maintainers; [ jk lrewega aaronjheng ];
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [ jk lrewega aaronjheng ];
    mainProgram = "buf";
  };
}