summary refs log tree commit diff
path: root/pkgs/development/libraries/mtxclient
diff options
context:
space:
mode:
authorBenjamin Esham <benjamin@esham.io>2019-07-01 13:14:36 -0400
committerBenjamin Esham <benjamin@esham.io>2019-07-01 13:15:49 -0400
commit39aac077235f2000d4ccc4effcd8140a9901795e (patch)
tree7a12da150ff0878f469ca69997f9b86e43e23864 /pkgs/development/libraries/mtxclient
parent01f10d01632092b1dcea8dae643b93cea87a38a1 (diff)
downloadnixpkgs-39aac077235f2000d4ccc4effcd8140a9901795e.tar
nixpkgs-39aac077235f2000d4ccc4effcd8140a9901795e.tar.gz
nixpkgs-39aac077235f2000d4ccc4effcd8140a9901795e.tar.bz2
nixpkgs-39aac077235f2000d4ccc4effcd8140a9901795e.tar.lz
nixpkgs-39aac077235f2000d4ccc4effcd8140a9901795e.tar.xz
nixpkgs-39aac077235f2000d4ccc4effcd8140a9901795e.tar.zst
nixpkgs-39aac077235f2000d4ccc4effcd8140a9901795e.zip
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.
Diffstat (limited to 'pkgs/development/libraries/mtxclient')
-rw-r--r--pkgs/development/libraries/mtxclient/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/development/libraries/mtxclient/default.nix b/pkgs/development/libraries/mtxclient/default.nix
index ee8c8f101a2..ef8525cf54d 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;
   };
 }