mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 07:05:13 +00:00
postgresqlPackages.tsearch_extras: remove
This has been added in #22166 in 2017. Upstream has archived the repo in 2020: https://github.com/zulip/tsearch_extras/issues/7 This dependency is unused, abandoned and r-ryantm tries to "downgrade" it: Let's remove it!
This commit is contained in:
parent
f6370c1456
commit
f5e01f2e47
@ -89,8 +89,6 @@ in {
|
||||
|
||||
timescaledb_toolkit = super.callPackage ./timescaledb_toolkit.nix { };
|
||||
|
||||
tsearch_extras = super.callPackage ./tsearch_extras.nix { };
|
||||
|
||||
tds_fdw = super.callPackage ./tds_fdw.nix { };
|
||||
|
||||
pgrouting = super.callPackage ./pgrouting.nix { };
|
||||
|
@ -1,27 +0,0 @@
|
||||
{
|
||||
lib,
|
||||
stdenv,
|
||||
fetchFromGitHub,
|
||||
postgresql,
|
||||
buildPostgresqlExtension,
|
||||
}:
|
||||
|
||||
buildPostgresqlExtension {
|
||||
pname = "tsearch-extras";
|
||||
version = "0.4";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "zulip";
|
||||
repo = "tsearch_extras";
|
||||
rev = "84e78f00931c4ef261d98197d6b5d94fc141f742"; # no release tag?
|
||||
sha256 = "18j0saqblg3jhrz38splk173xjwdf32c67ymm18m8n5y94h8d2ba";
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
description = "Provides a few PostgreSQL functions for a lower-level data full text search";
|
||||
homepage = "https://github.com/zulip/tsearch_extras/";
|
||||
license = licenses.postgresql;
|
||||
platforms = postgresql.meta.platforms;
|
||||
maintainers = with maintainers; [ DerTim1 ];
|
||||
};
|
||||
}
|
@ -1028,7 +1028,7 @@ mapAliases {
|
||||
tex-match = throw "'tex-match' has been removed due to lack of maintenance upstream. Consider using 'hieroglyphic' instead"; # Added 2024-09-24
|
||||
texinfo5 = throw "'texinfo5' has been removed from nixpkgs"; # Added 2024-09-10
|
||||
timescaledb = postgresqlPackages.timescaledb;
|
||||
tsearch_extras = postgresqlPackages.tsearch_extras;
|
||||
tsearch_extras = throw "'tsearch_extras' has been removed from nixpkgs"; # Added 2024-12-15
|
||||
|
||||
postgresql_12 = throw "postgresql_12 has been removed since it reached its EOL upstream"; # Added 2024-11-14
|
||||
postgresql_12_jit = throw "postgresql_12 has been removed since it reached its EOL upstream"; # Added 2024-11-14
|
||||
|
Loading…
Reference in New Issue
Block a user