heisenbridge: 1.15.0 -> 1.15.2

https://github.com/hifi/heisenbridge/releases/tag/v1.15.2

Also adds an update script to make automatic updates easier.

Signed-off-by: Sumner Evans <me@sumnerevans.com>
This commit is contained in:
Sumner Evans
2025-03-18 23:52:55 +05:30
committed by Masum Reza
parent bc8560e990
commit 6e8d3ae6bf
+5 -2
View File
@@ -1,18 +1,19 @@
{
lib,
fetchFromGitHub,
nix-update-script,
python3,
}:
python3.pkgs.buildPythonApplication rec {
pname = "heisenbridge";
version = "1.15.0";
version = "1.15.2";
src = fetchFromGitHub {
owner = "hifi";
repo = pname;
tag = "v${version}";
sha256 = "sha256-4K6Sffu/yKHkcoNENbgpci2dbJVAH3vVkogcw/IYpnw=";
sha256 = "sha256-7zOpjIRYm+F8my+Gk/SXFIpzXMublPuzo93GpD8SxvU=";
};
postPatch = ''
@@ -30,6 +31,8 @@ python3.pkgs.buildPythonApplication rec {
pytestCheckHook
];
passthru.updateScript = nix-update-script { };
meta = with lib; {
description = "Bouncer-style Matrix-IRC bridge";
homepage = "https://github.com/hifi/heisenbridge";