nixpkgs/pkgs/tools/text/namazu/default.nix
Will Dietz 4b7b083bcb treewide: stdenv.lib.platforms.gnu -> ... gnu ++ linux
Include all linux platforms.
2018-04-30 18:12:10 -05:00

46 lines
1.4 KiB
Nix

{ fetchurl, stdenv, perl }:
stdenv.mkDerivation rec {
name = "namazu-2.0.21";
src = fetchurl {
url = "http://namazu.org/stable/${name}.tar.gz";
sha256 = "1xvi7hrprdchdpzhg3fvk4yifaakzgydza5c0m50h1yvg6vay62w";
};
buildInputs = [ perl ];
# First install the `File::MMagic' Perl module.
# !!! this shouldn't refer to Perl 5.10.0!
preConfigure = ''
( cd File-MMagic && \
perl Makefile.PL \
LIB="$out/lib/perl5/site_perl/5.10.0" \
INSTALLSITEMAN3DIR="$out/man" && \
make && make install )
export PERL5LIB="$out/lib/perl5/site_perl/5.10.0:$PERL5LIB"
'';
# 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;
meta = {
description = "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 = stdenv.lib.licenses.gpl2Plus;
homepage = http://namazu.org/;
platforms = stdenv.lib.platforms.gnu ++ stdenv.lib.platforms.linux; # arbitrary choice
maintainers = [ ];
broken = true; # File-MMagic is not compatible with our Perl version
};
}