374709f308
xapianBindings hasn't been building against PHP for a few months now, and no other packages in nixpkgs expects PHP support at this time.
23 lines
555 B
Nix
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 ];
|
|
};
|
|
}
|