about summary refs log tree commit diff
path: root/pkgs/applications/networking
diff options
context:
space:
mode:
authorBenjamin Esham <benjamin@esham.io>2019-07-01 13:13:41 -0400
committerBenjamin Esham <benjamin@esham.io>2019-07-01 13:15:49 -0400
commit01f10d01632092b1dcea8dae643b93cea87a38a1 (patch)
tree1d5be90156f1710f38cb324a06fa3ef80c117a54 /pkgs/applications/networking
parent33c5f3cec7456a07ecfdab1a1fb05919701e1346 (diff)
downloadnixlib-01f10d01632092b1dcea8dae643b93cea87a38a1.tar
nixlib-01f10d01632092b1dcea8dae643b93cea87a38a1.tar.gz
nixlib-01f10d01632092b1dcea8dae643b93cea87a38a1.tar.bz2
nixlib-01f10d01632092b1dcea8dae643b93cea87a38a1.tar.lz
nixlib-01f10d01632092b1dcea8dae643b93cea87a38a1.tar.xz
nixlib-01f10d01632092b1dcea8dae643b93cea87a38a1.tar.zst
nixlib-01f10d01632092b1dcea8dae643b93cea87a38a1.zip
weechat-matrix-bridge: mark package as broken as 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/applications/networking')
-rw-r--r--pkgs/applications/networking/irc/weechat/scripts/weechat-matrix-bridge/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/applications/networking/irc/weechat/scripts/weechat-matrix-bridge/default.nix b/pkgs/applications/networking/irc/weechat/scripts/weechat-matrix-bridge/default.nix
index 137a32f9364f..233fe418df3a 100644
--- a/pkgs/applications/networking/irc/weechat/scripts/weechat-matrix-bridge/default.nix
+++ b/pkgs/applications/networking/irc/weechat/scripts/weechat-matrix-bridge/default.nix
@@ -42,5 +42,9 @@ stdenv.mkDerivation {
     maintainers = with maintainers; [ ma27 ];
     license = licenses.mit; # see https://github.com/torhve/weechat-matrix-protocol-script/blob/0052e7275ae149dc5241226391c9b1889ecc3c6b/matrix.lua#L53
     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;
   };
 }