From 90cb7481963d872394e4d4446d35169de5f1c15f Mon Sep 17 00:00:00 2001 From: Yureka Date: Tue, 10 Aug 2021 17:25:21 +0200 Subject: [PATCH] llvmPackages_13.libcxx: mark as broken on darwin (cherry picked from commit f8230bb0f482e639b09d84c2ffaf2ca95c179427) --- pkgs/development/compilers/llvm/13/libcxx/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/compilers/llvm/13/libcxx/default.nix b/pkgs/development/compilers/llvm/13/libcxx/default.nix index f511eba81dc..c60039274de 100644 --- a/pkgs/development/compilers/llvm/13/libcxx/default.nix +++ b/pkgs/development/compilers/llvm/13/libcxx/default.nix @@ -44,6 +44,10 @@ stdenv.mkDerivation rec { libc++ is an implementation of the C++ standard library, targeting C++11, C++14 and above. ''; + + # https://github.com/NixOS/nixpkgs/pull/133217#issuecomment-895742807 + broken = stdenv.isDarwin; + # "All of the code in libc++ is dual licensed under the MIT license and the # UIUC License (a BSD-like license)": license = with lib.licenses; [ mit ncsa ];