mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
Seeks 0.3.0.
svn path=/nixpkgs/trunk/; revision=24549
This commit is contained in:
parent
eb40c213dd
commit
5c2974a0af
1 changed files with 6 additions and 9 deletions
|
@ -1,23 +1,20 @@
|
|||
{ 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 {
|
||||
name = "seeks-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/seeks/solo/seeks_solo_stable-${version}.src.tar.gz";
|
||||
sha256 = "0hjaqwcaa19qbq28y5gq0415fz10vx034aghqa01hrhhl9yrjvc4";
|
||||
url = "mirror://sourceforge/seeks/solo/seeks-${version}.tar.gz";
|
||||
sha256 = "07gkf7666bx5fk3zk0s47fj659czlyk3ag9bihkl5mdjfikb6k46";
|
||||
};
|
||||
|
||||
buildInputs =
|
||||
[ zlib docbook2x pcre curl libxml2 libevent perl
|
||||
autoconf automake libtool
|
||||
[ zlib docbook2x pcre curl libxml2 libevent perl pkgconfig
|
||||
protobuf tokyocabinet
|
||||
];
|
||||
|
||||
# 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>.
|
||||
|
|
Loading…
Reference in a new issue