perlPackages.SearchXapian: remove at 1.2.25.5

Not sure to what extent we can expect maintenance going forward.
This commit is contained in:
sternenseemann 2025-02-24 18:32:00 +01:00 committed by Alyssa Ross
parent 1fc3696792
commit f5090d4920
3 changed files with 4 additions and 16 deletions

View File

@ -12,6 +12,9 @@
The hook can be disabled by providing `dontCheckForBrokenSymlinks = true;` as an argument to `mkDerivation`.
For more information, [check the docs](https://nixos.org/manual/nixpkgs/unstable/#no-broken-symlinks.sh) or [see this PR](https://github.com/NixOS/nixpkgs/pull/370750).
- The hand written `perlPackages.SearchXapian` bindings have been dropped in favor of the (mostly compatible)
`perlPackages.Xapian`.
- The `nixLog*` family of functions made available through the standard environment have been rewritten to prefix messages with both the debug level and the function name of the caller.
The `nixLog` function, which logs unconditionally, was also re-introduced and modified to prefix messages with the function name of the caller.
For more information, [see this PR](https://github.com/NixOS/nixpkgs/pull/370742).

View File

@ -47,7 +47,7 @@ let
passthru.tests = {
inherit mu xapian-omega;
inherit (perlPackages) SearchXapian Xapian;
inherit (perlPackages) Xapian;
python-xapian = python3.pkgs.xapian;
};

View File

@ -22487,21 +22487,6 @@ with self; {
};
};
SearchXapian = buildPerlPackage {
pname = "Search-Xapian";
version = "1.2.25.5";
src = fetchurl {
url = "mirror://cpan/authors/id/O/OL/OLLY/Search-Xapian-1.2.25.5.tar.gz";
hash = "sha256-IE+9xxLWcR/6tmjB9M/AB7Y5qftkrX4ZyyD8EKkQuos=";
};
buildInputs = [ pkgs.xapian DevelLeak ];
meta = {
description = "Perl XS frontend to the Xapian C++ search library";
homepage = "https://xapian.org";
license = with lib.licenses; [ artistic1 gpl1Plus ];
};
};
SeleniumRemoteDriver = buildPerlPackage {
pname = "Selenium-Remote-Driver";
version = "1.49";