about summary refs log tree commit diff
path: root/pkgs/development/libraries/abseil-cpp/202103.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/libraries/abseil-cpp/202103.nix')
-rw-r--r--pkgs/development/libraries/abseil-cpp/202103.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/development/libraries/abseil-cpp/202103.nix b/pkgs/development/libraries/abseil-cpp/202103.nix
index 04af3153719a..ec43a98c0497 100644
--- a/pkgs/development/libraries/abseil-cpp/202103.nix
+++ b/pkgs/development/libraries/abseil-cpp/202103.nix
@@ -39,7 +39,7 @@ stdenv.mkDerivation rec {
       url = "https://github.com/abseil/abseil-cpp/commit/808bc202fc13e85a7948db0d7fb58f0f051200b1.patch";
       sha256 = "sha256-ayY/aV/xWOdEyFSDqV7B5WDGvZ0ASr/aeBeYwP5RZVc=";
     })
-  ] ++ lib.optionals stdenv.isDarwin [
+  ] ++ lib.optionals stdenv.hostPlatform.isDarwin [
     # Don’t propagate the path to CoreFoundation. Otherwise, it’s impossible to build packages
     # that require a different SDK other than the default one.
     ./cmake-core-foundation.patch
@@ -59,5 +59,7 @@ stdenv.mkDerivation rec {
     license = licenses.asl20;
     platforms = platforms.all;
     maintainers = [ maintainers.andersk ];
+    # Requires LFS64 APIs. 202401 and later are fine.
+    broken = stdenv.hostPlatform.isMusl;
   };
 }