about summary refs log tree commit diff
path: root/pkgs/applications/networking/instant-messengers/coyim
diff options
context:
space:
mode:
authorAaron Jheng <wentworth@outlook.com>2022-11-16 02:44:54 +0000
committerAaron Jheng <wentworth@outlook.com>2022-11-16 05:25:31 +0000
commit959585a2ed1bf19ed6dbb8dea2568790a944c800 (patch)
treebe1ff1a28c1a9013937e910faff848ede80787c4 /pkgs/applications/networking/instant-messengers/coyim
parentce89321950381ec845e56c6a6d1340abe5cd7a65 (diff)
coyim: tweak platforms
Diffstat (limited to 'pkgs/applications/networking/instant-messengers/coyim')
-rw-r--r--pkgs/applications/networking/instant-messengers/coyim/default.nix17
1 files changed, 14 insertions, 3 deletions
diff --git a/pkgs/applications/networking/instant-messengers/coyim/default.nix b/pkgs/applications/networking/instant-messengers/coyim/default.nix
index d7c3de7267784..c86efd9c1030d 100644
--- a/pkgs/applications/networking/instant-messengers/coyim/default.nix
+++ b/pkgs/applications/networking/instant-messengers/coyim/default.nix
@@ -1,5 +1,15 @@
-{ lib, buildGoPackage, fetchFromGitHub, pkg-config,
-  cairo, gdk-pixbuf, glib, gnome, wrapGAppsHook, gtk3 }:
+{ lib
+, stdenv
+, buildGoPackage
+, fetchFromGitHub
+, pkg-config
+, cairo
+, gdk-pixbuf
+, glib
+, gnome
+, wrapGAppsHook
+, gtk3
+}:
 
 buildGoPackage rec {
   pname = "coyim";
@@ -22,6 +32,7 @@ buildGoPackage rec {
     description = "a safe and secure chat client";
     homepage = "https://coy.im/";
     license = licenses.gpl3;
-    platforms = platforms.linux;
+    platforms = [ "x86_64-linux" "x86_64-darwin" ];
+    broken = stdenv.isDarwin;
   };
 }