mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-28 16:43:58 +00:00
24 lines
733 B
Nix
24 lines
733 B
Nix
{ lib, stdenv, fetchFromGitHub, postgresql, buildPostgresqlExtension }:
|
|
|
|
buildPostgresqlExtension rec {
|
|
pname = "pg_ivm";
|
|
version = "1.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sraoss";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-Qcie7sbXcMbQkMoFIYBfttmvlYooESdSk2DyebHKPlk=";
|
|
};
|
|
|
|
meta = with lib; {
|
|
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 ];
|
|
platforms = postgresql.meta.platforms;
|
|
license = licenses.postgresql;
|
|
broken = versionOlder postgresql.version "13";
|
|
};
|
|
}
|