1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-05 12:02:47 +00:00
nixpkgs/pkgs/tools/text/namazu/default.nix

45 lines
1.4 KiB
Nix
Raw Normal View History

2021-01-15 09:19:50 +00:00
{ fetchurl, lib, stdenv, perl }:
stdenv.mkDerivation rec {
2013-12-20 15:40:59 +00:00
name = "namazu-2.0.21";
src = fetchurl {
url = "http://namazu.org/stable/${name}.tar.gz";
2013-12-20 15:40:59 +00:00
sha256 = "1xvi7hrprdchdpzhg3fvk4yifaakzgydza5c0m50h1yvg6vay62w";
};
buildInputs = [ perl ];
# First install the `File::MMagic' Perl module.
preConfigure = ''
( cd File-MMagic && \
perl Makefile.PL \
LIB="$out/${perl.libPrefix}/${perl.version}" \
INSTALLSITEMAN3DIR="$out/man" && \
make && make install )
export PERL5LIB="$out/${perl.libPrefix}/${perl.version}:$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.
'';
2021-01-15 09:19:50 +00:00
license = lib.licenses.gpl2Plus;
homepage = "http://namazu.org/";
2021-01-15 13:21:58 +00:00
platforms = lib.platforms.gnu ++ lib.platforms.linux; # arbitrary choice
2013-08-16 22:44:33 +01:00
maintainers = [ ];
2016-03-30 20:53:44 +01:00
broken = true; # File-MMagic is not compatible with our Perl version
};
}