summary refs log tree commit diff
path: root/pkgs/tools/networking/p2p/seeks
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2010-07-22 09:03:35 +0000
committerLudovic Courtès <ludo@gnu.org>2010-07-22 09:03:35 +0000
commit8297acd5110772da31b3f0a0d175647fa8aae7fd (patch)
treedfd65a10c394f510bcdf866862d379374c40527a /pkgs/tools/networking/p2p/seeks
parent80bcec77ecd72e8315b130e1f3c3a2fc783374fb (diff)
downloadnixlib-8297acd5110772da31b3f0a0d175647fa8aae7fd.tar
nixlib-8297acd5110772da31b3f0a0d175647fa8aae7fd.tar.gz
nixlib-8297acd5110772da31b3f0a0d175647fa8aae7fd.tar.bz2
nixlib-8297acd5110772da31b3f0a0d175647fa8aae7fd.tar.lz
nixlib-8297acd5110772da31b3f0a0d175647fa8aae7fd.tar.xz
nixlib-8297acd5110772da31b3f0a0d175647fa8aae7fd.tar.zst
nixlib-8297acd5110772da31b3f0a0d175647fa8aae7fd.zip
Add Seeks, a "social" search engine.
svn path=/nixpkgs/trunk/; revision=22698
Diffstat (limited to 'pkgs/tools/networking/p2p/seeks')
-rw-r--r--pkgs/tools/networking/p2p/seeks/default.nix49
1 files changed, 49 insertions, 0 deletions
diff --git a/pkgs/tools/networking/p2p/seeks/default.nix b/pkgs/tools/networking/p2p/seeks/default.nix
new file mode 100644
index 000000000000..83f9b74e11a4
--- /dev/null
+++ b/pkgs/tools/networking/p2p/seeks/default.nix
@@ -0,0 +1,49 @@
+{ fetchurl, stdenv, zlib, docbook2x, pcre, curl, libxml2, libevent, perl
+, autoconf, automake, libtool }:
+
+let version = "0.2.3a"; in
+stdenv.mkDerivation {
+  name = "seeks-${version}";
+
+  src = fetchurl {
+    url = "mirror://sourceforge/seeks/solo/seeks_solo_stable-${version}.src.tar.gz";
+    sha256 = "0hjaqwcaa19qbq28y5gq0415fz10vx034aghqa01hrhhl9yrjvc4";
+  };
+
+  buildInputs =
+    [ zlib docbook2x pcre curl libxml2 libevent perl
+      autoconf automake libtool
+    ];
+
+  # The tarball doesn't contain `configure' & co.  Sigh...
+  preConfigure = "autoreconf -vfi";
+
+  configureFlags =
+    [ # Enable the built-in web server providing a web search interface.
+      # See <http://www.seeks-project.info/wiki/index.php/Seeks_On_Web>.
+      "--enable-httpserv-plugin=yes"
+      "--with-libevent=${libevent}"
+    ];
+
+  meta = {
+    description = "Seeks, a social web search engine";
+
+    longDescription =
+      '' Seeks is a free and open technical design and application for
+         enabling social websearch.  Its specific purpose is to regroup users
+         whose queries are similar so they can share both the query results
+         and their experience on these results.  On this basis, Seeks allows
+         for true real-time, decentralized, websearch to emerge.
+
+         In the long term, there is no need for web crawlers and third-party
+         web indexes as users can push content directly to search groups.
+      '';
+
+    license = "AGPLv3+";
+
+    homepage = http://www.seeks-project.info/;
+
+    maintainers = [ stdenv.lib.maintainers.ludo ];
+    platforms = stdenv.lib.platforms.gnu;  # arbitrary choice
+  };
+}