31 lines
721 B
Nix
31 lines
721 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
curl,
|
|
postgresql,
|
|
buildPostgresqlExtension,
|
|
}:
|
|
|
|
buildPostgresqlExtension rec {
|
|
pname = "pgsql-http";
|
|
version = "1.6.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pramsey";
|
|
repo = "pgsql-http";
|
|
rev = "v${version}";
|
|
hash = "sha256-C8eqi0q1dnshUAZjIsZFwa5FTYc7vmATF3vv2CReWPM=";
|
|
};
|
|
|
|
buildInputs = [ curl ];
|
|
|
|
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 = [ ];
|
|
platforms = postgresql.meta.platforms;
|
|
license = licenses.mit;
|
|
};
|
|
}
|