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

stdenv.mkDerivation {
  name = "xapian-1.2.5";

  src = fetchurl {
    url = http://oligarchy.co.uk/xapian/1.2.5/xapian-core-1.2.5.tar.gz;
    sha256 = "392ccfccb4372725be24509e5ee95a7422f07c3d47d0cbdbb8545e789cc936f7";
  };

  buildInputs = [ libuuid zlib ];

  meta = { 
    description = "Xapian Probabilistic Information Retrieval library";
    homepage = "http://xapian.org";
    license = "GPL";
    maintainers = [ stdenv.lib.maintainers.chaoflow ];
  };
}