summary refs log tree commit diff
path: root/pkgs/development/libraries/xapian/default.nix
blob: 36b55c59c24554f7cb0203aea1615f759b1bec53 (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
{ stdenv, fetchurl, libuuid, zlib }:

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

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

  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 ];
    platforms = stdenv.lib.platforms.unix;
  };
}