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
|
2018-08-08 02:01:22 +01:00
|
|
|
, gtkmm3, gsasl, gtksourceview3, libxmlxx, libinfinity, intltool, itstool, gnome3 }:
|
2010-10-04 05:15:23 +01:00
|
|
|
|
|
|
|
let
|
|
|
|
libinf = libinfinity.override { gtkWidgets = true; inherit avahiSupport; };
|
2019-08-13 22:52:01 +01:00
|
|
|
in stdenv.mkDerivation {
|
2021-01-29 03:43:04 +00:00
|
|
|
pname = "gobby";
|
|
|
|
version = "unstable-2020-12-29";
|
|
|
|
|
2018-08-08 02:01:22 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "gobby";
|
|
|
|
repo = "gobby";
|
2021-01-29 03:43:04 +00:00
|
|
|
rev = "49bfd3c3aa82e6fe9b3d59c3455d7eb4b77379fc";
|
|
|
|
sha256 = "1p2f2rid7c0b9gvmywl3r37sxx57wv3r1rxvs1rwihmf9rkqnfxg";
|
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
|
|
|
}
|