nixpkgs/pkgs/development/libraries/xapian/default.nix
Domen Kožar ec03fd92db Revert "xapian: update from 1.2.8 to 1.3.1"
This reverts commit b76e8417b3.

Breaks recoll, since bindings also need to be updated.
2014-10-13 15:30:32 +02:00

20 lines
496 B
Nix

{ stdenv, fetchurl, libuuid, zlib }:
stdenv.mkDerivation {
name = "xapian-1.2.8";
src = fetchurl {
url = http://oligarchy.co.uk/xapian/1.2.8/xapian-core-1.2.8.tar.gz;
sha256 = "00411ebac66a5592b87fc57ccfeb234c84b929ed23c185befb5df9929df3d4f9";
};
buildInputs = [ libuuid zlib ];
meta = {
description = "Search engine library";
homepage = "http://xapian.org";
license = stdenv.lib.licenses.gpl2Plus;
maintainers = [ stdenv.lib.maintainers.chaoflow ];
};
}