postgresql16Packages.pg_ivm: 1.6 -> 1.7

Diff: https://github.com/sraoss/pg_ivm/compare/v1.6...v1.7

Changelog: https://github.com/sraoss/pg_ivm/releases/tag/v1.7
This commit is contained in:
Mario Rodas 2023-09-22 04:20:00 +00:00
parent 6d602bbc4d
commit 81beb99b82

View File

@ -2,19 +2,19 @@
stdenv.mkDerivation rec {
pname = "pg_ivm";
version = "1.6";
version = "1.7";
src = fetchFromGitHub {
owner = "sraoss";
repo = pname;
rev = "v${version}";
hash = "sha256-MAZsEPQu1AqI53h01M5bErc/MUJRauNPO9Hizig+2dc=";
hash = "sha256-uSYhNUfd4mw7mGGAcP43X/0v/bNp6SdZjPzktGONgaQ=";
};
buildInputs = [ postgresql ];
installPhase = ''
install -D -t $out/lib *.so
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
'';
@ -22,6 +22,7 @@ stdenv.mkDerivation rec {
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;