From f8230bb0f482e639b09d84c2ffaf2ca95c179427 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 --- 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 f511eba81dc5..c60039274deb 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 ];