wal-listener: init at 2.6.1

Co-authored-by: Anderson Torres <torres.anderson.85@protonmail.com>
This commit is contained in:
Bruno Bigras 2024-08-23 12:21:53 -04:00
parent 0ac15ac9a5
commit faca032142

View File

@ -0,0 +1,29 @@
{
lib,
buildGoModule,
fetchFromGitHub,
gitUpdater,
}:
buildGoModule rec {
pname = "wal-listener";
version = "2.6.1";
src = fetchFromGitHub {
owner = "ihippik";
repo = "wal-listener";
rev = "v${version}";
hash = "sha256-OqjCFIdU4wCiPGIMrlp+nGVr0XTNHTE8zB8/toZtM44=";
};
vendorHash = "sha256-VUuEVH3IUuvThIt/HJx8OE8oqbjnSeqDIQxP0sl0FJw=";
passthru.updateScript = gitUpdater { rev-prefix = "v"; };
meta = {
description = "PostgreSQL WAL listener";
homepage = "https://github.com/ihippik/wal-listener";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ bbigras ];
};
}