Merge pull request #61046 from marsam/platforms-postgresqlPackages
postgresqlPackages: enable on platforms where PostgreSQL is supported
This commit is contained in:
commit
ce0345a6c8
@ -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;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -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;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -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 ];
|
||||||
};
|
};
|
||||||
|
@ -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;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -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;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user