From c9ad6ec90ad8424b35d9a6129762f1b201ce021d Mon Sep 17 00:00:00 2001 From: Evgeny Egorochkin Date: Mon, 4 Oct 2010 04:15:23 +0000 Subject: Packaged Gobby svn path=/nixpkgs/trunk/; revision=24040 --- pkgs/applications/editors/gobby/default.nix | 31 +++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 pkgs/applications/editors/gobby/default.nix (limited to 'pkgs/applications/editors') diff --git a/pkgs/applications/editors/gobby/default.nix b/pkgs/applications/editors/gobby/default.nix new file mode 100644 index 000000000000..ea86f9caf528 --- /dev/null +++ b/pkgs/applications/editors/gobby/default.nix @@ -0,0 +1,31 @@ +{ 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 +, gnomevfs ? null}: + +let + libinf = libinfinity.override { gtkWidgets = true; inherit avahiSupport; }; + +in stdenv.mkDerivation rec { + + name = "gobby-0.4.93"; + src = fetchurl { + url = "http://releases.0x539.de/gobby/${name}.tar.gz"; + sha256 = "1zk6p0kdp9vcvrr3kx0kw106ln309hd7bbsq8li1g0pcnkgrf4q4"; + }; + + buildInputs = [ pkgconfig gtkmm gsasl gtksourceview libxmlxx libinf intltool ] + ++ stdenv.lib.optional gnomeSupport gnomevfs; + + 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; + }; +} \ No newline at end of file -- cgit 1.4.1