postgresqlPackages.pg_net: init at 0.7.2
Signed-off-by: Austin Seipp <aseipp@pobox.com>
This commit is contained in:
parent
c0cfec5a0b
commit
a262231cca
2 changed files with 33 additions and 0 deletions
31
pkgs/servers/sql/postgresql/ext/pg_net.nix
Normal file
31
pkgs/servers/sql/postgresql/ext/pg_net.nix
Normal file
|
@ -0,0 +1,31 @@
|
|||
{ lib, stdenv, fetchFromGitHub, curl, postgresql }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "pg_net";
|
||||
version = "0.7.2";
|
||||
|
||||
buildInputs = [ curl postgresql ];
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "supabase";
|
||||
repo = pname;
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-9Ki3fyinHTYrfckxAY0fCTlzJd9l+n7QRUV7mIWrqmc=";
|
||||
};
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/{lib,share/postgresql/extension}
|
||||
|
||||
cp *.so $out/lib
|
||||
cp sql/*.sql $out/share/postgresql/extension
|
||||
cp *.control $out/share/postgresql/extension
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Async networking for Postgres";
|
||||
homepage = "https://github.com/supabase/pg_net";
|
||||
maintainers = with maintainers; [ thoughtpolice ];
|
||||
platforms = postgresql.meta.platforms;
|
||||
license = licenses.postgresql;
|
||||
};
|
||||
}
|
|
@ -48,6 +48,8 @@ self: super: {
|
|||
|
||||
pg_topn = super.callPackage ./ext/pg_topn.nix { };
|
||||
|
||||
pg_net = super.callPackage ./ext/pg_net.nix { };
|
||||
|
||||
pgtap = super.callPackage ./ext/pgtap.nix { };
|
||||
|
||||
pipelinedb = super.callPackage ./ext/pipelinedb.nix { };
|
||||
|
|
Loading…
Reference in a new issue