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