1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/servers/sql/postgresql/ext/pg_net.nix
2024-12-14 21:56:57 +00:00

34 lines
754 B
Nix

{
lib,
stdenv,
fetchFromGitHub,
curl,
postgresql,
buildPostgresqlExtension,
}:
buildPostgresqlExtension rec {
pname = "pg_net";
version = "0.14.0";
buildInputs = [ curl ];
src = fetchFromGitHub {
owner = "supabase";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-c1pxhTyrE5j6dY+M5eKAboQNofIORS+Dccz+7HKEKQI=";
};
env.NIX_CFLAGS_COMPILE = "-Wno-error";
meta = with lib; {
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 ];
platforms = postgresql.meta.platforms;
license = licenses.postgresql;
};
}