Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
31 lines
934 B
Nix
31 lines
934 B
Nix
{ lib, stdenv, fetchFromGitHub, postgresql }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "pg_ivm";
|
|
version = "1.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sraoss";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-Qcie7sbXcMbQkMoFIYBfttmvlYooESdSk2DyebHKPlk=";
|
|
};
|
|
|
|
buildInputs = [ postgresql ];
|
|
|
|
installPhase = ''
|
|
install -D -t $out/lib pg_ivm${postgresql.dlSuffix}
|
|
install -D -t $out/share/postgresql/extension *.sql
|
|
install -D -t $out/share/postgresql/extension *.control
|
|
'';
|
|
|
|
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";
|
|
};
|
|
}
|