about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorOrivej Desh <orivej@gmx.fr>2017-11-25 07:28:08 +0000
committerOrivej Desh <orivej@gmx.fr>2017-11-25 07:28:08 +0000
commit03209fc04314f74359e24948160c2b510fb08812 (patch)
tree52bcbacd60287389de28a9ac15b5614585f274dd /pkgs
parent2f1a818d00f957f3102c0b412864c63b6e3e7447 (diff)
downloadnixlib-03209fc04314f74359e24948160c2b510fb08812.tar
nixlib-03209fc04314f74359e24948160c2b510fb08812.tar.gz
nixlib-03209fc04314f74359e24948160c2b510fb08812.tar.bz2
nixlib-03209fc04314f74359e24948160c2b510fb08812.tar.lz
nixlib-03209fc04314f74359e24948160c2b510fb08812.tar.xz
nixlib-03209fc04314f74359e24948160c2b510fb08812.tar.zst
nixlib-03209fc04314f74359e24948160c2b510fb08812.zip
coyim: disable on Darwin
It has never been building on Darwin.
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/networking/instant-messengers/coyim/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/applications/networking/instant-messengers/coyim/default.nix b/pkgs/applications/networking/instant-messengers/coyim/default.nix
index 5f868fc98584..5b70d7479269 100644
--- a/pkgs/applications/networking/instant-messengers/coyim/default.nix
+++ b/pkgs/applications/networking/instant-messengers/coyim/default.nix
@@ -16,9 +16,10 @@ buildGoPackage rec {
 
   nativeBuildInputs = [ pkgconfig wrapGAppsHook glib cairo gdk_pixbuf gnome3.gtk gnome3.defaultIconTheme ];
 
-  meta = {
+  meta = with stdenv.lib; {
     description = "a safe and secure chat client";
     homepage = https://coy.im/;
-    license = stdenv.lib.licenses.gpl3;
+    license = licenses.gpl3;
+    platforms = platforms.linux;
   };
 }