postgresqlPackages.pg_net: modernize

This commit is contained in:
Wolfgang Walther
2025-03-18 18:16:50 +01:00
parent 329750763e
commit df033d0eef
+12 -12
View File
@@ -1,33 +1,33 @@
{
lib,
stdenv,
fetchFromGitHub,
curl,
postgresql,
buildPostgresqlExtension,
curl,
fetchFromGitHub,
lib,
postgresql,
stdenv,
}:
buildPostgresqlExtension rec {
pname = "pg_net";
version = "0.14.0";
buildInputs = [ curl ];
src = fetchFromGitHub {
owner = "supabase";
repo = pname;
rev = "refs/tags/v${version}";
repo = "pg_net";
tag = "v${version}";
hash = "sha256-c1pxhTyrE5j6dY+M5eKAboQNofIORS+Dccz+7HKEKQI=";
};
buildInputs = [ curl ];
env.NIX_CFLAGS_COMPILE = "-Wno-error";
meta = with lib; {
meta = {
description = "Async networking for Postgres";
homepage = "https://github.com/supabase/pg_net";
changelog = "https://github.com/supabase/pg_net/releases/tag/v${version}";
maintainers = with maintainers; [ thoughtpolice ];
maintainers = with lib.maintainers; [ thoughtpolice ];
platforms = postgresql.meta.platforms;
license = licenses.postgresql;
license = lib.licenses.postgresql;
};
}