From 94567c3495ea51cf1d591551c3391175215f0cd0 Mon Sep 17 00:00:00 2001 From: Guillaume Girol Date: Sat, 16 Aug 2025 12:00:00 +0000 Subject: [PATCH] dovecot_fts_xapian: remove I think it was mainly used by simple-nixos-mailserver. simple-nixos-mailserver switched to fts-flatcurve, which is more performant and with more vivid development. --- .../by-name/do/dovecot_fts_xapian/package.nix | 56 ------------------- pkgs/top-level/aliases.nix | 1 + 2 files changed, 1 insertion(+), 56 deletions(-) delete mode 100644 pkgs/by-name/do/dovecot_fts_xapian/package.nix diff --git a/pkgs/by-name/do/dovecot_fts_xapian/package.nix b/pkgs/by-name/do/dovecot_fts_xapian/package.nix deleted file mode 100644 index 6b0f6e5afbd7..000000000000 --- a/pkgs/by-name/do/dovecot_fts_xapian/package.nix +++ /dev/null @@ -1,56 +0,0 @@ -{ - lib, - stdenv, - fetchFromGitHub, - autoreconfHook, - sqlite, - pkg-config, - dovecot, - xapian, - icu, -}: - -stdenv.mkDerivation rec { - pname = "dovecot-fts-xapian"; - version = "1.9"; - - src = fetchFromGitHub { - owner = "grosjo"; - repo = "fts-xapian"; - rev = version; - hash = "sha256-jHXeCJVdRWGdLMooh5cq5ZeZPM5fDo1lO6U5VMcwf3g="; - }; - - buildInputs = [ - xapian - icu - sqlite - ]; - - nativeBuildInputs = [ - autoreconfHook - pkg-config - ]; - - preConfigure = '' - export PANDOC=false - ''; - - configureFlags = [ - "--with-dovecot=${dovecot}/lib/dovecot" - "--with-moduledir=${placeholder "out"}/lib/dovecot/modules" - ]; - - meta = with lib; { - homepage = "https://github.com/grosjo/fts-xapian"; - description = "Dovecot FTS plugin based on Xapian"; - changelog = "https://github.com/grosjo/fts-xapian/releases"; - license = licenses.lgpl21Only; - maintainers = with maintainers; [ - julm - symphorien - ]; - platforms = platforms.unix; - broken = stdenv.hostPlatform.isDarwin; # never built on Hydra https://hydra.nixos.org/job/nixpkgs/trunk/dovecot_fts_xapian.x86_64-darwin - }; -} diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index 6c16ca998d68..c919384179f6 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -582,6 +582,7 @@ mapAliases { dotnet-sdk_3 = throw "'dotnet-sdk_3' has been renamed to/replaced by 'dotnetCorePackages.sdk_3_1'"; # Converted to throw 2024-10-17 dotnet-sdk_5 = throw "'dotnet-sdk_5' has been renamed to/replaced by 'dotnetCorePackages.sdk_5_0'"; # Converted to throw 2024-10-17 dotnetenv = throw "'dotnetenv' has been removed because it was unmaintained in Nixpkgs"; # Added 2025-07-11 + dovecot_fts_xapian = throw "'dovecot_fts_xapian' has been removed because it was unmaintained in Nixpkgs. Consider using dovecot-fts-flatcurve instead"; # Added 2025-08-16 downonspot = throw "'downonspot' was removed because upstream has been taken down by a cease and desist"; # Added 2025-01-25 dozenal = throw "dozenal has been removed because it does not compile and only minimal functionality"; # Added 2025-03-30 dstat = throw "'dstat' has been removed because it has been unmaintained since 2020. Use 'dool' instead."; # Added 2025-01-21