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.
This commit is contained in:
parent
e3a335dd37
commit
374709f308
2 changed files with 3 additions and 3 deletions
|
@ -60,7 +60,7 @@ composableDerivation.composableDerivation {} rec {
|
||||||
|
|
||||||
cfg = {
|
cfg = {
|
||||||
pythonSupport = true;
|
pythonSupport = true;
|
||||||
phpSupport = true;
|
phpSupport = false;
|
||||||
rubySupport = true;
|
rubySupport = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -2,11 +2,11 @@
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "xapian-${version}";
|
name = "xapian-${version}";
|
||||||
version = "1.2.21";
|
version = "1.2.23";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://oligarchy.co.uk/xapian/${version}/xapian-core-${version}.tar.xz";
|
url = "http://oligarchy.co.uk/xapian/${version}/xapian-core-${version}.tar.xz";
|
||||||
sha256 = "0grd2s6gf8yzqwdaa50g57j9d81mxkrrpkyldm2shgyizdc8gx33";
|
sha256 = "0z9lhvfaazzmd611bnii9a0d19sqnjs0s9vbcgjhcv8s9spax0wp";
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = [ "out" "doc" ];
|
outputs = [ "out" "doc" ];
|
||||||
|
|
Loading…
Reference in a new issue