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 {
|
2018-08-08 02:01:22 +01:00
|
|
|
name = "gobby-unstable-2018-04-03";
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "gobby";
|
|
|
|
repo = "gobby";
|
|
|
|
rev = "ea4df27c9b6b885434797b0071ce198b23f9f63b";
|
|
|
|
sha256 = "0q7lq64yn16lxvj4jphs8y9194h0xppj8k7y9x8b276krraak2az";
|
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
|
|
|
}
|