Unverified Commit a3284a0c authored by Bruno Bigras's avatar Bruno Bigras Committed by GitHub
Browse files

wal-listener: init at 2.6.1 (#336815)

parents 0c7aafc7 faca0321
Loading
Loading
Loading
Loading
+29 −0
Original line number Diff line number Diff line
{
  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 ];
  };
}