postgresql16Packages.pg_net: 0.7.2 -> 0.7.3

Diff: https://github.com/supabase/pg_net/compare/refs/tags/v0.7.2...v0.7.3

Changelog: https://github.com/supabase/pg_net/releases/tag/v0.7.3

+4 -3
+4 -3
pkgs/servers/sql/postgresql/ext/pg_net.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "pg_net"; 5 - version = "0.7.2"; 5 + version = "0.7.3"; 6 6 7 7 buildInputs = [ curl postgresql ]; 8 8 ··· 10 10 owner = "supabase"; 11 11 repo = pname; 12 12 rev = "refs/tags/v${version}"; 13 - hash = "sha256-9Ki3fyinHTYrfckxAY0fCTlzJd9l+n7QRUV7mIWrqmc="; 13 + hash = "sha256-j5qLgn/i4ljysuwgT46579N+9VpGr483vQEX/3lUYFA="; 14 14 }; 15 15 16 16 installPhase = '' 17 17 mkdir -p $out/{lib,share/postgresql/extension} 18 18 19 - cp *.so $out/lib 19 + cp *${postgresql.dlSuffix} $out/lib 20 20 cp sql/*.sql $out/share/postgresql/extension 21 21 cp *.control $out/share/postgresql/extension 22 22 ''; ··· 24 24 meta = with lib; { 25 25 description = "Async networking for Postgres"; 26 26 homepage = "https://github.com/supabase/pg_net"; 27 + changelog = "https://github.com/supabase/pg_net/releases/tag/v${version}"; 27 28 maintainers = with maintainers; [ thoughtpolice ]; 28 29 platforms = postgresql.meta.platforms; 29 30 license = licenses.postgresql;