Add Namazu, a full-text search engine.

svn path=/nixpkgs/trunk/; revision=13655
This commit is contained in:
Ludovic Courtès 2008-12-17 17:09:29 +00:00
parent 01545132b4
commit f64c0bc28e
2 changed files with 41 additions and 0 deletions

View file

@ -0,0 +1,37 @@
{ fetchurl, stdenv, perl }:
stdenv.mkDerivation rec {
name = "namazu-2.0.18";
src = fetchurl {
url = "http://namazu.org/stable/${name}.tar.gz";
sha256 = "12i5z830yh5sw3087gmna44742gcw2q7lpj6b94k8fj0h45cm26j";
};
buildInputs = [ perl ];
# First install the `File::MMagic' Perl module.
preConfigure = ''
( cd File-MMagic && \
perl Makefile.PL \
LIB="$out/lib/site_perl/5.10.0" \
INSTALLSITEMAN3DIR="$out/man" && \
make && make install )
export PERL5LIB="$out/lib/site_perl/5.10.0:$PERL5LIB"
'';
doCheck = true;
meta = {
description = "Namazu, a full-text search engine";
longDescription = ''
Namazu is a full-text search engine intended for easy use. Not
only does it work as a small or medium scale Web search engine,
but also as a personal search system for email or other files.
'';
license = "GPLv2+";
homepage = http://namazu.org/;
};
}

View file

@ -1026,6 +1026,10 @@ let
inherit fetchurl stdenv perl shebangfix;
};
namazu = import ../tools/text/namazu {
inherit fetchurl stdenv perl;
};
nc6 = composedArgsAndFun (selectVersion ../tools/networking/nc6 "1.0") {
inherit builderDefs;
};