nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 30 lines 779 B view raw
1{ 2 fetchFromGitHub, 3 lib, 4 postgresql, 5 postgresqlBuildExtension, 6 openssl, 7}: 8 9postgresqlBuildExtension (finalAttrs: { 10 pname = "pg_background"; 11 version = "1.5"; 12 13 src = fetchFromGitHub { 14 owner = "vibhorkum"; 15 repo = "pg_background"; 16 tag = "v${finalAttrs.version}"; 17 hash = "sha256-9fW5wHdo9r5fLwU8zN2EEVSWxa+7q2qMjPpMo6iCavg="; 18 }; 19 20 buildInputs = postgresql.buildInputs; 21 22 meta = { 23 description = "Run PostgreSQL Commands in Background Workers"; 24 homepage = "https://github.com/vibhorkum/pg_background"; 25 changelog = "https://github.com/vibhorkum/pg_background/releases/tag/v${finalAttrs.version}"; 26 maintainers = with lib.maintainers; [ mkleczek ]; 27 platforms = postgresql.meta.platforms; 28 license = lib.licenses.gpl3Only; 29 }; 30})