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

+4 -3
+4 -3
pkgs/servers/sql/postgresql/ext/pg_ivm.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "pg_ivm"; 5 - version = "1.6"; 6 7 src = fetchFromGitHub { 8 owner = "sraoss"; 9 repo = pname; 10 rev = "v${version}"; 11 - hash = "sha256-MAZsEPQu1AqI53h01M5bErc/MUJRauNPO9Hizig+2dc="; 12 }; 13 14 buildInputs = [ postgresql ]; 15 16 installPhase = '' 17 - install -D -t $out/lib *.so 18 install -D -t $out/share/postgresql/extension *.sql 19 install -D -t $out/share/postgresql/extension *.control 20 ''; ··· 22 meta = with lib; { 23 description = "Materialized views with IVM (Incremental View Maintenance) for PostgreSQL"; 24 homepage = "https://github.com/sraoss/pg_ivm"; 25 maintainers = with maintainers; [ ivan ]; 26 platforms = postgresql.meta.platforms; 27 license = licenses.postgresql;
··· 2 3 stdenv.mkDerivation rec { 4 pname = "pg_ivm"; 5 + version = "1.7"; 6 7 src = fetchFromGitHub { 8 owner = "sraoss"; 9 repo = pname; 10 rev = "v${version}"; 11 + hash = "sha256-uSYhNUfd4mw7mGGAcP43X/0v/bNp6SdZjPzktGONgaQ="; 12 }; 13 14 buildInputs = [ postgresql ]; 15 16 installPhase = '' 17 + install -D -t $out/lib pg_ivm${postgresql.dlSuffix} 18 install -D -t $out/share/postgresql/extension *.sql 19 install -D -t $out/share/postgresql/extension *.control 20 ''; ··· 22 meta = with lib; { 23 description = "Materialized views with IVM (Incremental View Maintenance) for PostgreSQL"; 24 homepage = "https://github.com/sraoss/pg_ivm"; 25 + changelog = "https://github.com/sraoss/pg_ivm/releases/tag/v${version}"; 26 maintainers = with maintainers; [ ivan ]; 27 platforms = postgresql.meta.platforms; 28 license = licenses.postgresql;