postgresqlPackages.pg_ivm: modernize

This commit is contained in:
Wolfgang Walther
2025-03-18 18:16:48 +01:00
parent 35b7e2c031
commit f7761b09ac
+10 -10
View File
@@ -1,9 +1,9 @@
{
lib,
stdenv,
fetchFromGitHub,
postgresql,
buildPostgresqlExtension,
fetchFromGitHub,
lib,
postgresql,
stdenv,
}:
buildPostgresqlExtension rec {
@@ -12,18 +12,18 @@ buildPostgresqlExtension rec {
src = fetchFromGitHub {
owner = "sraoss";
repo = pname;
rev = "v${version}";
repo = "pg_ivm";
tag = "v${version}";
hash = "sha256-Qcie7sbXcMbQkMoFIYBfttmvlYooESdSk2DyebHKPlk=";
};
meta = with lib; {
meta = {
description = "Materialized views with IVM (Incremental View Maintenance) for PostgreSQL";
homepage = "https://github.com/sraoss/pg_ivm";
changelog = "https://github.com/sraoss/pg_ivm/releases/tag/v${version}";
maintainers = with maintainers; [ ivan ];
maintainers = with lib.maintainers; [ ivan ];
platforms = postgresql.meta.platforms;
license = licenses.postgresql;
broken = versionOlder postgresql.version "13";
license = lib.licenses.postgresql;
broken = lib.versionOlder postgresql.version "13";
};
}