Seeks 0.3.0.

svn path=/nixpkgs/trunk/; revision=24549
This commit is contained in:
Ludovic Courtès 2010-10-30 21:44:36 +00:00
parent eb40c213dd
commit 5c2974a0af

View File

@ -1,23 +1,20 @@
{ fetchurl, stdenv, zlib, docbook2x, pcre, curl, libxml2, libevent, perl { fetchurl, stdenv, zlib, docbook2x, pcre, curl, libxml2, libevent, perl
, autoconf, automake, libtool }: , pkgconfig, protobuf, tokyocabinet }:
let version = "0.2.3a"; in let version = "0.3.0"; in
stdenv.mkDerivation { stdenv.mkDerivation {
name = "seeks-${version}"; name = "seeks-${version}";
src = fetchurl { src = fetchurl {
url = "mirror://sourceforge/seeks/solo/seeks_solo_stable-${version}.src.tar.gz"; url = "mirror://sourceforge/seeks/solo/seeks-${version}.tar.gz";
sha256 = "0hjaqwcaa19qbq28y5gq0415fz10vx034aghqa01hrhhl9yrjvc4"; sha256 = "07gkf7666bx5fk3zk0s47fj659czlyk3ag9bihkl5mdjfikb6k46";
}; };
buildInputs = buildInputs =
[ zlib docbook2x pcre curl libxml2 libevent perl [ zlib docbook2x pcre curl libxml2 libevent perl pkgconfig
autoconf automake libtool protobuf tokyocabinet
]; ];
# The tarball doesn't contain `configure' & co. Sigh...
preConfigure = "autoreconf -vfi";
configureFlags = configureFlags =
[ # Enable the built-in web server providing a web search interface. [ # Enable the built-in web server providing a web search interface.
# See <http://www.seeks-project.info/wiki/index.php/Seeks_On_Web>. # See <http://www.seeks-project.info/wiki/index.php/Seeks_On_Web>.