treewide: pkgs/servers/sql: mark 2 psql extension broken

This commit is contained in:
Rick van Schijndel 2022-05-29 10:42:17 +02:00 committed by Janne Heß
parent 879d278253
commit 033d5579c2
No known key found for this signature in database
GPG Key ID: 69165158F05265DF
2 changed files with 2 additions and 1 deletions

View File

@ -54,12 +54,12 @@ stdenv.mkDerivation rec {
};
meta = with lib; {
broken = true;
description = "A graph database extension for PostgreSQL";
homepage = "https://age.apache.org/";
changelog = "https://github.com/apache/incubator-age/releases/tag/v${version}";
maintainers = with maintainers; [ ];
platforms = postgresql.meta.platforms;
license = licenses.asl20;
broken = versionOlder postgresql.version "11.0";
};
}

View File

@ -23,6 +23,7 @@ stdenv.mkDerivation rec {
'';
meta = with lib; {
broken = true;
description = "Columnar storage for PostgreSQL";
homepage = "https://www.citusdata.com/";
maintainers = with maintainers; [ thoughtpolice ];