depot/third_party/nixpkgs/pkgs/servers/sql/postgresql/ext/pgsql-http.nix
Default email 5e7c2d6cef Project import generated by Copybara.
GitOrigin-RevId: f99e5f03cc0aa231ab5950a15ed02afec45ed51a
2023-10-09 21:29:22 +02:00

30 lines
882 B
Nix

{ lib, stdenv, fetchFromGitHub, curl, postgresql }:
stdenv.mkDerivation rec {
pname = "pgsql-http";
version = "1.6.0";
src = fetchFromGitHub {
owner = "pramsey";
repo = "pgsql-http";
rev = "v${version}";
hash = "sha256-CPHfx7vhWfxkXsoKTzyFuTt47BPMvzi/pi1leGcuD60=";
};
buildInputs = [ curl postgresql ];
installPhase = ''
install -D -t $out/lib *.so
install -D -t $out/share/postgresql/extension *.sql
install -D -t $out/share/postgresql/extension *.control
'';
meta = with lib; {
description = "HTTP client for PostgreSQL, retrieve a web page from inside the database";
homepage = "https://github.com/pramsey/pgsql-http";
changelog = "https://github.com/pramsey/pgsql-http/releases/tag/v${version}";
maintainers = [ maintainers.marsam ];
platforms = postgresql.meta.platforms;
license = licenses.mit;
};
}