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.
This commit is contained in:
Benjamin Esham 2019-07-01 13:14:36 -04:00
parent 01f10d0163
commit 39aac07723

View File

@ -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;
};
}