Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions maintainers/maintainer-list.nix
Original file line number Diff line number Diff line change
Expand Up @@ -17465,6 +17465,12 @@
name = "Maciej Krüger";
keys = [ { fingerprint = "E90C BA34 55B3 6236 740C 038F 0D94 8CE1 9CF4 9C5F"; } ];
};
mkleczek = {
name = "Michal Kleczek";
email = "michal@kleczek.org";
github = "mkleczek";
githubId = 11559480;
};
mksafavi = {
name = "MK Safavi";
email = "mksafavi@gmail.com";
Expand Down
30 changes: 30 additions & 0 deletions pkgs/servers/sql/postgresql/ext/pg_background.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
fetchFromGitHub,
lib,
postgresql,
postgresqlBuildExtension,
openssl,
}:

postgresqlBuildExtension (finalAttrs: {
pname = "pg_background";
version = "1.5";

src = fetchFromGitHub {
owner = "vibhorkum";
repo = "pg_background";
tag = "v${finalAttrs.version}";
hash = "sha256-9fW5wHdo9r5fLwU8zN2EEVSWxa+7q2qMjPpMo6iCavg=";
};

buildInputs = postgresql.buildInputs;

meta = {
description = "Run PostgreSQL Commands in Background Workers";
homepage = "https://github.com/vibhorkum/pg_background";
changelog = "https://github.com/vibhorkum/pg_background/releases/tag/v${finalAttrs.version}";
maintainers = with lib.maintainers; [ mkleczek ];
platforms = postgresql.meta.platforms;
license = lib.licenses.gpl3Only;
};
})
Loading