postgresqlPackages: enable on platforms where PostgreSQL is supported

This commit is contained in:
Mario Rodas 2019-05-06 06:00:00 -05:00
parent 83d6250145
commit 12ee718d19
No known key found for this signature in database
GPG Key ID: 4C4BEFD7B18DC5E8
5 changed files with 5 additions and 5 deletions

View File

@ -26,7 +26,7 @@ stdenv.mkDerivation rec {
description = "Columnar storage for PostgreSQL"; description = "Columnar storage for PostgreSQL";
homepage = https://www.citusdata.com/; homepage = https://www.citusdata.com/;
maintainers = with maintainers; [ thoughtpolice ]; maintainers = with maintainers; [ thoughtpolice ];
platforms = platforms.linux; platforms = postgresql.meta.platforms;
license = licenses.asl20; license = licenses.asl20;
}; };
} }

View File

@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
description = "HyperLogLog for PostgreSQL"; description = "HyperLogLog for PostgreSQL";
homepage = https://www.citusdata.com/; homepage = https://www.citusdata.com/;
maintainers = with maintainers; [ thoughtpolice ]; maintainers = with maintainers; [ thoughtpolice ];
platforms = platforms.linux; platforms = postgresql.meta.platforms;
license = licenses.asl20; license = licenses.asl20;
}; };
} }

View File

@ -24,7 +24,7 @@ stdenv.mkDerivation {
is tightly integrated in the RDBMS in the sense that it defines operators so instead of the traditional is tightly integrated in the RDBMS in the sense that it defines operators so instead of the traditional
operators (= and <>) you can use ~~~ and ~!~ (any of these operators represents a similarity function). operators (= and <>) you can use ~~~ and ~!~ (any of these operators represents a similarity function).
''; '';
platforms = stdenv.lib.platforms.linux; platforms = postgresql.meta.platforms;
license = stdenv.lib.licenses.gpl2; license = stdenv.lib.licenses.gpl2;
maintainers = with lib.maintainers; [ danbst ]; maintainers = with lib.maintainers; [ danbst ];
}; };

View File

@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
description = "Efficient querying of 'top values' for PostgreSQL"; description = "Efficient querying of 'top values' for PostgreSQL";
homepage = https://github.com/citusdata/postgresql-topn; homepage = https://github.com/citusdata/postgresql-topn;
maintainers = with maintainers; [ thoughtpolice ]; maintainers = with maintainers; [ thoughtpolice ];
platforms = platforms.linux; platforms = postgresql.meta.platforms;
license = licenses.agpl3; license = licenses.agpl3;
}; };
} }

View File

@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
description = "A PostgreSQL foreign data wrapper to connect to TDS databases (Sybase and Microsoft SQL Server)"; description = "A PostgreSQL foreign data wrapper to connect to TDS databases (Sybase and Microsoft SQL Server)";
homepage = https://github.com/tds-fdw/tds_fdw; homepage = https://github.com/tds-fdw/tds_fdw;
maintainers = [ maintainers.steve-chavez ]; maintainers = [ maintainers.steve-chavez ];
platforms = platforms.linux; platforms = postgresql.meta.platforms;
license = licenses.postgresql; license = licenses.postgresql;
}; };
} }