2010-10-04 05:15:23 +01:00
|
|
|
{ avahiSupport ? false # build support for Avahi in libinfinity
|
2021-01-19 06:50:56 +00:00
|
|
|
, lib, stdenv, fetchFromGitHub, autoconf, automake, pkg-config, wrapGAppsHook, yelp-tools
|
2021-05-07 22:18:14 +01:00
|
|
|
, gtkmm3, gsasl, gtksourceview3, libxmlxx, libinfinity, intltool, itstool, gnome }:
|
2010-10-04 05:15:23 +01:00
|
|
|
|
|
|
|
let
|
|
|
|
libinf = libinfinity.override { gtkWidgets = true; inherit avahiSupport; };
|
2021-02-01 10:55:01 +00:00
|
|
|
in stdenv.mkDerivation rec {
|
2021-01-29 03:43:04 +00:00
|
|
|
pname = "gobby";
|
2021-02-01 10:55:01 +00:00
|
|
|
version = "0.6.0";
|
2021-01-29 03:43:04 +00:00
|
|
|
|
2018-08-08 02:01:22 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "gobby";
|
|
|
|
repo = "gobby";
|
2021-02-01 10:55:01 +00:00
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "06cbc2y4xkw89jaa0ayhgh7fxr5p2nv3jjs8h2xcbbbgwaw08lk0";
|
2010-10-04 05:15:23 +01:00
|
|
|
};
|
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ autoconf automake pkg-config intltool itstool yelp-tools wrapGAppsHook ];
|
2018-08-08 02:01:22 +01:00
|
|
|
buildInputs = [ gtkmm3 gsasl gtksourceview3 libxmlxx libinf ];
|
|
|
|
|
|
|
|
preConfigure = "./autogen.sh";
|
2010-10-04 05:15:23 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://gobby.0x539.de/";
|
2010-10-04 05:15:23 +01:00
|
|
|
description = "A GTK-based collaborative editor supporting multiple documents in one session and a multi-user chat";
|
2021-01-15 13:21:58 +00:00
|
|
|
license = lib.licenses.gpl2Plus;
|
2010-10-04 05:15:23 +01:00
|
|
|
maintainers = [ maintainers.phreedom ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
2011-10-08 13:06:03 +01:00
|
|
|
}
|