wal-listener: init at 2.6.1 (#336815)

This commit is contained in:
Bruno Bigras 2024-08-26 20:39:09 -04:00 committed by GitHub
commit a3284a0cba
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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 ];
};
}