2010-10-04 06:15:23 +02:00
|
|
|
{ avahiSupport ? false # build support for Avahi in libinfinity
|
|
|
|
, gnomeSupport ? false # build support for Gnome(gnome-vfs)
|
|
|
|
, stdenv, fetchurl, pkgconfig
|
|
|
|
, gtkmm, gsasl, gtksourceview, libxmlxx, libinfinity, intltool
|
2011-10-08 14:06:03 +02:00
|
|
|
, gnome_vfs ? null}:
|
2010-10-04 06:15:23 +02:00
|
|
|
|
|
|
|
let
|
|
|
|
libinf = libinfinity.override { gtkWidgets = true; inherit avahiSupport; };
|
|
|
|
|
|
|
|
in stdenv.mkDerivation rec {
|
|
|
|
|
2012-11-20 22:21:47 +01:00
|
|
|
name = "gobby-0.4.94";
|
2010-10-04 06:15:23 +02:00
|
|
|
src = fetchurl {
|
|
|
|
url = "http://releases.0x539.de/gobby/${name}.tar.gz";
|
2012-11-20 22:21:47 +01:00
|
|
|
sha256 = "b9798808447cd94178430f0fb273d0e45d0ca30ab04560e3790bac469e03bb00";
|
2010-10-04 06:15:23 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ pkgconfig gtkmm gsasl gtksourceview libxmlxx libinf intltool ]
|
2011-10-08 14:06:03 +02:00
|
|
|
++ stdenv.lib.optional gnomeSupport gnome_vfs;
|
2010-10-04 06:15:23 +02:00
|
|
|
|
|
|
|
configureFlags = ''
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://gobby.0x539.de/;
|
|
|
|
description = "A GTK-based collaborative editor supporting multiple documents in one session and a multi-user chat";
|
|
|
|
license = "GPLv2+";
|
|
|
|
maintainers = [ maintainers.phreedom ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
2011-10-08 14:06:03 +02:00
|
|
|
}
|