summary refs log tree commit diff
path: root/pkgs/development/libraries/xapian/default.nix
blob: 89f97292d39d88199eb535a35729ace8f7f1f228 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv, fetchurl, libuuid, zlib }:

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

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

  outputs = [ "out" "doc" ];

  buildInputs = [ libuuid zlib ];

  meta = {
    description = "Search engine library";
    homepage = http://xapian.org/;
    license = stdenv.lib.licenses.gpl2Plus;
    maintainers = [ stdenv.lib.maintainers.chaoflow ];
  };
}