Skip to content

Commit

Permalink
buf: 1.42.0 -> 1.44.0
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronjheng committed Oct 6, 2024
1 parent 01e72d4 commit 16b59bd
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@

buildGoModule rec {
pname = "buf";
version = "1.42.0";
version = "1.44.0";

src = fetchFromGitHub {
owner = "bufbuild";
repo = "buf";
rev = "v${version}";
hash = "sha256-T4cEl2aT6F/IamCd1FxomYxqGpbcbXzPtEu0AJUyJJU=";
hash = "sha256-I0Y9gsNqCFLR2Bkt55HyER6wznTNoZW5345zUmuOFXQ=";
};

vendorHash = "sha256-apF3FpVlwonm76d0Ue7TMPDIRW0BNkZXWMLgh1+mmvo=";
vendorHash = "sha256-4ykve9X//ckYPDkq76i0ojOiyzjrPJ/J2z7mA5giWKE=";

patches = [
# Skip a test that requires networking to be available to work.
Expand All @@ -40,6 +40,10 @@ buildGoModule rec {
];

preCheck = ''
# For WebAssembly runtime tests
GOOS=wasip1 GOARCH=wasm go build -o $GOPATH/bin/buf-plugin-suffix.wasm \
./private/bufpkg/bufcheck/internal/cmd/buf-plugin-suffix
# The tests need access to some of the built utilities
export PATH="$PATH:$GOPATH/bin"
'';
Expand Down
File renamed without changes.
2 changes: 0 additions & 2 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -351,8 +351,6 @@ with pkgs;

brev-cli = callPackage ../development/misc/brev-cli { };

buf = callPackage ../development/tools/buf { };

cbfmt = callPackage ../development/tools/cbfmt { };

circumflex = callPackage ../applications/networking/circumflex { };
Expand Down

0 comments on commit 16b59bd

Please sign in to comment.