about summary refs log tree commit diff
path: root/pkgs/applications/editors/gobby
diff options
context:
space:
mode:
authorEvgeny Egorochkin <phreedom.stdin@gmail.com>2010-10-04 04:15:23 +0000
committerEvgeny Egorochkin <phreedom.stdin@gmail.com>2010-10-04 04:15:23 +0000
commitc9ad6ec90ad8424b35d9a6129762f1b201ce021d (patch)
tree79a591c3f7199c5d940613c2529dd7530c12b417 /pkgs/applications/editors/gobby
parent5763650f455a6be5cb2771b92f83649c383fb72b (diff)
downloadnixlib-c9ad6ec90ad8424b35d9a6129762f1b201ce021d.tar
nixlib-c9ad6ec90ad8424b35d9a6129762f1b201ce021d.tar.gz
nixlib-c9ad6ec90ad8424b35d9a6129762f1b201ce021d.tar.bz2
nixlib-c9ad6ec90ad8424b35d9a6129762f1b201ce021d.tar.lz
nixlib-c9ad6ec90ad8424b35d9a6129762f1b201ce021d.tar.xz
nixlib-c9ad6ec90ad8424b35d9a6129762f1b201ce021d.tar.zst
nixlib-c9ad6ec90ad8424b35d9a6129762f1b201ce021d.zip
Packaged Gobby
svn path=/nixpkgs/trunk/; revision=24040
Diffstat (limited to 'pkgs/applications/editors/gobby')
-rw-r--r--pkgs/applications/editors/gobby/default.nix31
1 files changed, 31 insertions, 0 deletions
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