summary refs log tree commit diff
path: root/pkgs/tools/text/namazu/default.nix
blob: e748515b051323606e51c83fe175f6328974ad82 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{ fetchurl, lib, stdenv, perl, perlPackages, makeWrapper }:

stdenv.mkDerivation rec {
  pname = "namazu";
  version = "2.0.21";

  src = fetchurl {
    url = "http://namazu.org/stable/${pname}-${version}.tar.gz";
    sha256 = "1xvi7hrprdchdpzhg3fvk4yifaakzgydza5c0m50h1yvg6vay62w";
  };

  buildInputs = [ perl perlPackages.FileMMagic ];
  nativeBuildInputs = [ makeWrapper ];

  postInstall = ''
    wrapProgram $out/bin/mknmz --set PERL5LIB ${perlPackages.makeFullPerlPath [ perlPackages.FileMMagic ]}
  '';

  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 = lib.licenses.gpl2Plus;
    homepage = "http://namazu.org/";

    platforms = lib.platforms.gnu ++ lib.platforms.linux;  # arbitrary choice
    maintainers = [ ];
  };
}