Merge pull request #201431 from aaronjheng/zhf/coyim

authored by Martin Weinelt and committed by GitHub 5f9d7477 48cf2b24

+14 -3
+14 -3
pkgs/applications/networking/instant-messengers/coyim/default.nix
··· 1 - { lib, buildGoPackage, fetchFromGitHub, pkg-config, 2 - cairo, gdk-pixbuf, glib, gnome, wrapGAppsHook, gtk3 }: 3 4 buildGoPackage rec { 5 pname = "coyim"; ··· 22 description = "a safe and secure chat client"; 23 homepage = "https://coy.im/"; 24 license = licenses.gpl3; 25 - platforms = platforms.linux; 26 }; 27 }
··· 1 + { lib 2 + , stdenv 3 + , buildGoPackage 4 + , fetchFromGitHub 5 + , pkg-config 6 + , cairo 7 + , gdk-pixbuf 8 + , glib 9 + , gnome 10 + , wrapGAppsHook 11 + , gtk3 12 + }: 13 14 buildGoPackage rec { 15 pname = "coyim"; ··· 32 description = "a safe and secure chat client"; 33 homepage = "https://coy.im/"; 34 license = licenses.gpl3; 35 + platforms = [ "x86_64-linux" "x86_64-darwin" ]; 36 + broken = stdenv.isDarwin; 37 }; 38 }