postgresqlPackages.pg_net: 0.18.0 -> 0.19.1 (#425390)

authored by Wolfgang Walther and committed by GitHub 045d1185 8cb6e247

+2 -6
+2 -6
pkgs/servers/sql/postgresql/ext/pg_net.nix
··· 8 8 9 9 postgresqlBuildExtension (finalAttrs: { 10 10 pname = "pg_net"; 11 - version = "0.18.0"; 11 + version = "0.19.1"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "supabase"; 15 15 repo = "pg_net"; 16 16 tag = "v${finalAttrs.version}"; 17 - hash = "sha256-MXZewz6vb1ZEGMzbk/x0VtBDH2GxnwYWsy3EjJnas2U="; 17 + hash = "sha256-Sy2PG1zCB6tNbcMNMWvl/Fe2Zu1stvEIqGrLsRF09GY="; 18 18 }; 19 19 20 20 buildInputs = [ curl ]; 21 - 22 - env.NIX_CFLAGS_COMPILE = toString ( 23 - lib.optional (lib.versionAtLeast postgresql.version "18") "-Wno-error=missing-variable-declarations" 24 - ); 25 21 26 22 meta = { 27 23 description = "Async networking for Postgres";