postgresqlPackages.temporal_tables: modernize

This commit is contained in:
Wolfgang Walther
2025-03-18 18:17:17 +01:00
parent 83ed279f0e
commit a117e894b3
@@ -1,9 +1,9 @@
{
lib,
stdenv,
fetchFromGitHub,
postgresql,
buildPostgresqlExtension,
fetchFromGitHub,
lib,
postgresql,
stdenv,
}:
buildPostgresqlExtension rec {
@@ -13,15 +13,15 @@ buildPostgresqlExtension rec {
src = fetchFromGitHub {
owner = "arkhipov";
repo = "temporal_tables";
rev = "v${version}";
sha256 = "sha256-7+DCSPAPhsokWDq/5IXNhd7jY6FfzxxUjlsg/VJeD3k=";
tag = "v${version}";
hash = "sha256-7+DCSPAPhsokWDq/5IXNhd7jY6FfzxxUjlsg/VJeD3k=";
};
meta = with lib; {
meta = {
description = "Temporal Tables PostgreSQL Extension";
homepage = "https://github.com/arkhipov/temporal_tables";
maintainers = with maintainers; [ ggpeti ];
maintainers = with lib.maintainers; [ ggpeti ];
platforms = postgresql.meta.platforms;
license = licenses.bsd2;
license = lib.licenses.bsd2;
};
}