summary refs log tree commit diff
path: root/pkgs/tools/misc/xapian-omega/default.nix
blob: 68241ac0e90745b2b30f58b91d7d2ee192cfe198 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ stdenv, fetchurl, pkgconfig, xapian, perl, pcre, zlib }:

stdenv.mkDerivation rec {
  name = "xapian-omega-${version}";
  version = "1.2.21";

  src = fetchurl {
    url = "http://oligarchy.co.uk/xapian/${version}/xapian-omega-${version}.tar.xz";
    sha256 = "0zjjr4ypanwrjkcpgi37d72v2jjcfwnw8lgddv0i7z2jf1fklbc6";
  };

  buildInputs = [ pkgconfig xapian perl pcre zlib ];

  meta = with stdenv.lib; {
    description = "Indexer and CGI search front-end built on Xapian library";
    homepage = http://xapian.org/;
    license = licenses.gpl2Plus;
  };
}