about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorNick Cao <nickcao@nichi.co>2023-12-29 10:53:39 -0500
committerGitHub <noreply@github.com>2023-12-29 10:53:39 -0500
commitc8e074a1834eee7c43a9f9ab9faceefee9f2fdb7 (patch)
treed5c47701429a4dbd3a6060f01b8b084d1addc70d /pkgs
parenteb5aaab74a23228c512bdc0384ef653bd3c599e0 (diff)
parent2a84df1eca1f88c2cbd0158db54de8f59f8d92f5 (diff)
Merge pull request #277399 from trofi/bazel-watcher.bazel-fix-tests-eval
bazel-watcher.bazel: fix `tests` attribute evaluation
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/tools/build-managers/bazel/bazel_5/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/tools/build-managers/bazel/bazel_5/default.nix b/pkgs/development/tools/build-managers/bazel/bazel_5/default.nix
index e662c14fa399d..08944413b7a04 100644
--- a/pkgs/development/tools/build-managers/bazel/bazel_5/default.nix
+++ b/pkgs/development/tools/build-managers/bazel/bazel_5/default.nix
@@ -287,7 +287,7 @@ stdenv.mkDerivation rec {
         sha256 = "1mm4awx6sa0myiz9j4hwp71rpr7yh8vihf3zm15n2ii6xb82r31k";
       };
 
-    in (lib.optionalSttrs (!stdenv.hostPlatform.isDarwin) {
+    in (lib.optionalAttrs (!stdenv.hostPlatform.isDarwin) {
       # `extracted` doesn’t work on darwin
       shebang = callPackage ../shebang-test.nix { inherit runLocal extracted bazelTest distDir; bazel = bazel_self;};
     }) // {