mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-22 21:53:32 +00:00
a262231cca
Signed-off-by: Austin Seipp <aseipp@pobox.com>
32 lines
819 B
Nix
32 lines
819 B
Nix
{ 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;
|
|
};
|
|
}
|