Merge #308775: Fix bazel-watcher, update to v0.25.2

This commit is contained in:
nicoo 2024-05-03 13:44:30 +00:00 committed by GitHub
commit 39873ecc06
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,7 +2,7 @@
, bazel_5
, fetchFromGitHub
, git
, go
, go_1_21
, python3
, lib, stdenv
}:
@ -29,16 +29,16 @@ let
in
buildBazelPackage rec {
pname = "bazel-watcher";
version = "0.24.0";
version = "0.25.2";
src = fetchFromGitHub {
owner = "bazelbuild";
repo = "bazel-watcher";
rev = "v${version}";
hash = "sha256-ebNHAYKyE3226KiCc2/VSz1OSITuPwuYlAIS3JrWzj0=";
hash = "sha256-lreGKA0DZiOd1bJq8NNQ+80cyDwiughoXCkKu1RaZmc=";
};
nativeBuildInputs = [ go git python3 ];
nativeBuildInputs = [ go_1_21 git python3 ];
removeRulesCC = false;
bazel = bazel_5;