2008-12-17 20:09:29 +03:00
|
|
|
{ fetchurl, stdenv, perl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2013-12-20 19:40:59 +04:00
|
|
|
name = "namazu-2.0.21";
|
2008-12-17 20:09:29 +03:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://namazu.org/stable/${name}.tar.gz";
|
2013-12-20 19:40:59 +04:00
|
|
|
sha256 = "1xvi7hrprdchdpzhg3fvk4yifaakzgydza5c0m50h1yvg6vay62w";
|
2008-12-17 20:09:29 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ perl ];
|
|
|
|
|
|
|
|
# First install the `File::MMagic' Perl module.
|
2009-04-23 03:04:18 +04:00
|
|
|
# !!! this shouldn't refer to Perl 5.10.0!
|
2008-12-17 20:09:29 +03:00
|
|
|
preConfigure = ''
|
|
|
|
( cd File-MMagic && \
|
|
|
|
perl Makefile.PL \
|
2009-04-23 03:04:18 +04:00
|
|
|
LIB="$out/lib/perl5/site_perl/5.10.0" \
|
2008-12-17 20:09:29 +03:00
|
|
|
INSTALLSITEMAN3DIR="$out/man" && \
|
|
|
|
make && make install )
|
2009-06-28 01:16:59 +04:00
|
|
|
export PERL5LIB="$out/lib/perl5/site_perl/5.10.0:$PERL5LIB"
|
2008-12-17 20:09:29 +03:00
|
|
|
'';
|
|
|
|
|
2010-11-12 01:12:08 +03:00
|
|
|
# FIXME: The `tests/namazu-6' test fails on GNU/Linux, presumably because
|
|
|
|
# phrase searching is broken somehow. However, it doesn't fail on other
|
|
|
|
# platforms.
|
|
|
|
doCheck = !stdenv.isLinux;
|
2008-12-17 20:09:29 +03:00
|
|
|
|
|
|
|
meta = {
|
2014-08-24 18:21:08 +04:00
|
|
|
description = "Full-text search engine";
|
2008-12-17 20:09:29 +03:00
|
|
|
|
|
|
|
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.
|
|
|
|
'';
|
|
|
|
|
2014-06-19 08:19:00 +04:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2008-12-17 20:09:29 +03:00
|
|
|
homepage = http://namazu.org/;
|
2010-11-12 01:12:08 +03:00
|
|
|
|
|
|
|
platforms = stdenv.lib.platforms.gnu; # arbitrary choice
|
2013-08-17 01:44:33 +04:00
|
|
|
maintainers = [ ];
|
2016-03-30 22:53:44 +03:00
|
|
|
broken = true; # File-MMagic is not compatible with our Perl version
|
2008-12-17 20:09:29 +03:00
|
|
|
};
|
|
|
|
}
|