nixpkgs/pkgs/development/libraries/xapian/default.nix
Graham Christensen 374709f308 xapian: 1.2.21 -> 1.2.23 and disable PHP support in xapianBindings
xapianBindings hasn't been building against PHP for a few months now,
and no other packages in nixpkgs expects PHP support at this time.
2016-04-04 07:42:38 -05:00

23 lines
555 B
Nix

{ stdenv, fetchurl, libuuid, zlib }:
stdenv.mkDerivation rec {
name = "xapian-${version}";
version = "1.2.23";
src = fetchurl {
url = "http://oligarchy.co.uk/xapian/${version}/xapian-core-${version}.tar.xz";
sha256 = "0z9lhvfaazzmd611bnii9a0d19sqnjs0s9vbcgjhcv8s9spax0wp";
};
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 ];
};
}