From 9cd03d19e36e7b0c2f2cfa245d0f0e50b18b86fb Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Thu, 24 Aug 2023 04:20:00 +0000 Subject: [PATCH] bazel-remote: 2.4.1 -> 2.4.2 Diff: https://github.com/buchgr/bazel-remote/compare/v2.4.1...v2.4.2 Changelog: https://github.com/buchgr/bazel-remote/releases/tag/v2.4.2 --- .../build-managers/bazel/bazel-remote/default.nix | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/build-managers/bazel/bazel-remote/default.nix b/pkgs/development/tools/build-managers/bazel/bazel-remote/default.nix index c731a1d2e723..308c514669b2 100644 --- a/pkgs/development/tools/build-managers/bazel/bazel-remote/default.nix +++ b/pkgs/development/tools/build-managers/bazel/bazel-remote/default.nix @@ -5,22 +5,27 @@ buildGoModule rec { pname = "bazel-remote"; - version = "2.4.1"; + version = "2.4.2"; src = fetchFromGitHub { owner = "buchgr"; repo = pname; rev = "v${version}"; - sha256 = "sha256-7zAeGJyMfMdrVDCuTWU3zikXjM/ydjnGj6Ctjckd32c="; + hash = "sha256-bXXEvTmzsFH0dt/p26gF9XnSgFulNIiIl3lxJRyUJMg="; }; - vendorHash = "sha256-SxGBfWcV10L6xC5XPIfv/HJWQy5g3AoV8z4/ae23DEc="; + vendorHash = "sha256-0rmqsUMwk5ytAZc94JzvZTuh0WAmQwBEWSE96yNALE0="; + + subPackages = [ "." ]; doCheck = false; + ldflags = [ "-s" "-w" "-X main.gitCommit=${version}" ]; + meta = with lib; { homepage = "https://github.com/buchgr/bazel-remote"; description = "A remote HTTP/1.1 cache for Bazel"; + changelog = "https://github.com/buchgr/bazel-remote/releases/tag/v${version}"; license = licenses.asl20; maintainers = lib.teams.bazel.members; platforms = platforms.darwin ++ platforms.linux;