From 39aac077235f2000d4ccc4effcd8140a9901795e Mon Sep 17 00:00:00 2001 From: Benjamin Esham Date: Mon, 1 Jul 2019 13:14:36 -0400 Subject: [PATCH] mtxclient: mark package as broken on Darwin All of the dependencies of this package are now available on Darwin, but the package itself still fails to build on that platform. --- pkgs/development/libraries/mtxclient/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/libraries/mtxclient/default.nix b/pkgs/development/libraries/mtxclient/default.nix index ee8c8f101a24..ef8525cf54d7 100644 --- a/pkgs/development/libraries/mtxclient/default.nix +++ b/pkgs/development/libraries/mtxclient/default.nix @@ -27,5 +27,9 @@ stdenv.mkDerivation rec { license = licenses.mit; maintainers = with maintainers; [ fpletz ]; platforms = platforms.unix; + + # As of 2019-06-30, all of the dependencies are available on macOS but the + # package itself does not build. + broken = stdenv.isDarwin; }; }