3
0
Fork 0
forked from mirrors/nixpkgs

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";
homepage = https://www.citusdata.com/;
maintainers = with maintainers; [ thoughtpolice ];
platforms = platforms.linux;
platforms = postgresql.meta.platforms;
license = licenses.asl20;
};
}

View file

@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
description = "HyperLogLog for PostgreSQL";
homepage = https://www.citusdata.com/;
maintainers = with maintainers; [ thoughtpolice ];
platforms = platforms.linux;
platforms = postgresql.meta.platforms;
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
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;
maintainers = with lib.maintainers; [ danbst ];
};

View file

@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
description = "Efficient querying of 'top values' for PostgreSQL";
homepage = https://github.com/citusdata/postgresql-topn;
maintainers = with maintainers; [ thoughtpolice ];
platforms = platforms.linux;
platforms = postgresql.meta.platforms;
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)";
homepage = https://github.com/tds-fdw/tds_fdw;
maintainers = [ maintainers.steve-chavez ];
platforms = platforms.linux;
platforms = postgresql.meta.platforms;
license = licenses.postgresql;
};
}