Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
32 lines
769 B
Nix
32 lines
769 B
Nix
{
|
|
curl,
|
|
fetchFromGitHub,
|
|
lib,
|
|
postgresql,
|
|
postgresqlBuildExtension,
|
|
}:
|
|
|
|
postgresqlBuildExtension (finalAttrs: {
|
|
pname = "pgsql-http";
|
|
version = "1.7.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pramsey";
|
|
repo = "pgsql-http";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-tgmty8ZYpSEccwQouI/Ho2M495k6DizbMaaJ0+aW03Q=";
|
|
};
|
|
|
|
buildInputs = [ curl ];
|
|
nativeBuildInputs = [ curl ];
|
|
|
|
meta = {
|
|
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${finalAttrs.version}";
|
|
maintainers = [ ];
|
|
platforms = postgresql.meta.platforms;
|
|
license = lib.licenses.mit;
|
|
};
|
|
})
|