2017-04-21 16:36:21 +00:00
|
|
|
{ stdenv, buildGoPackage, fetchFromGitHub, pkgconfig,
|
2017-04-25 17:16:23 +00:00
|
|
|
cairo, gdk_pixbuf, glib, gnome3, wrapGAppsHook }:
|
2017-04-21 16:36:21 +00:00
|
|
|
|
|
|
|
buildGoPackage rec {
|
|
|
|
name = "coyim-${version}";
|
2018-05-28 12:59:57 +00:00
|
|
|
version = "0.3.7_1";
|
2017-04-21 16:36:21 +00:00
|
|
|
|
|
|
|
goPackagePath = "github.com/twstrike/coyim";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "twstrike";
|
|
|
|
repo = "coyim";
|
|
|
|
rev = "df2c52fe865d38fa27e8a7af1d87612e8c048805";
|
|
|
|
sha256 = "1sna1n9dz1crws6cb1yjhy2kznbngjlbiw2diycshvbfigf7y7xl";
|
|
|
|
};
|
|
|
|
|
2017-04-25 17:16:23 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig wrapGAppsHook glib cairo gdk_pixbuf gnome3.gtk gnome3.defaultIconTheme ];
|
2017-04-21 16:36:21 +00:00
|
|
|
|
2017-11-25 07:28:08 +00:00
|
|
|
meta = with stdenv.lib; {
|
2017-04-21 16:36:21 +00:00
|
|
|
description = "a safe and secure chat client";
|
|
|
|
homepage = https://coy.im/;
|
2017-11-25 07:28:08 +00:00
|
|
|
license = licenses.gpl3;
|
|
|
|
platforms = platforms.linux;
|
2017-04-21 16:36:21 +00:00
|
|
|
};
|
|
|
|
}
|