5c2974a0af
svn path=/nixpkgs/trunk/; revision=24549
47 lines
1.5 KiB
Nix
47 lines
1.5 KiB
Nix
{ fetchurl, stdenv, zlib, docbook2x, pcre, curl, libxml2, libevent, perl
|
|
, pkgconfig, protobuf, tokyocabinet }:
|
|
|
|
let version = "0.3.0"; in
|
|
stdenv.mkDerivation {
|
|
name = "seeks-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/seeks/solo/seeks-${version}.tar.gz";
|
|
sha256 = "07gkf7666bx5fk3zk0s47fj659czlyk3ag9bihkl5mdjfikb6k46";
|
|
};
|
|
|
|
buildInputs =
|
|
[ zlib docbook2x pcre curl libxml2 libevent perl pkgconfig
|
|
protobuf tokyocabinet
|
|
];
|
|
|
|
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
|
|
};
|
|
}
|