diff options
| author | Guillaume Maudoux <guillaume.maudoux@tweag.io> | 2023-12-31 14:04:38 +0100 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2024-01-02 08:19:49 +0000 |
| commit | 92d7050547e4b2ccb4c79d411307b06b09c59303 (patch) | |
| tree | 914bb7a9ed3728dce7f2335623241d993b59d0a1 | |
| parent | bazel_7: fix remaining tests (diff) | |
| download | nixpkgs-92d7050547e4b2ccb4c79d411307b06b09c59303.tar.gz | |
bazel_7: Check-in the main lockfile
(cherry picked from commit e8e45bc82ee3fc58c39bb4408acdd92a6840f020)
| -rw-r--r-- | pkgs/development/tools/build-managers/bazel/bazel_7/default.nix | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/pkgs/development/tools/build-managers/bazel/bazel_7/default.nix b/pkgs/development/tools/build-managers/bazel/bazel_7/default.nix index 91a97a61a65d..eb66b676836b 100644 --- a/pkgs/development/tools/build-managers/bazel/bazel_7/default.nix +++ b/pkgs/development/tools/build-managers/bazel/bazel_7/default.nix @@ -55,10 +55,12 @@ let }; # Use builtins.fetchurl to avoid IFD, in particular on hydra - lockfile = builtins.fetchurl { - url = "https://raw.githubusercontent.com/bazelbuild/bazel/release-${version}/MODULE.bazel.lock"; - sha256 = "sha256-5xPpCeWVKVp1s4RVce/GoW2+fH8vniz5G1MNI4uezpc="; - }; + #lockfile = builtins.fetchurl { + # url = "https://raw.githubusercontent.com/bazelbuild/bazel/release-${version}/MODULE.bazel.lock"; + # sha256 = "sha256-5xPpCeWVKVp1s4RVce/GoW2+fH8vniz5G1MNI4uezpc="; + #}; + # Use a local copy of the above lockfile to make ofborg happy. + lockfile = ./MODULE.bazel.lock; # Two-in-one format distDir = repoCache; |
