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

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

  src = fetchurl {
    url = http://oligarchy.co.uk/xapian/1.0.23/xapian-core-1.0.23.tar.gz;
    sha256 = "0aed7296bd56b4b49aba944cc744e1e76fff8cfb0a70fd5b1f49d4c62a97ecc6";
  };

  buildInputs = [zlib];

  meta = { 
    description = "Xapian Probabilistic Information Retrieval library";
    homepage = "http://xapian.org";
    license = "GPLv2";
  };
}