[Backport release-24.05] mautrix-meta: adds maintainer, adds automatic updating (#340028)

This commit is contained in:
K900 2024-09-06 11:34:57 +03:00 committed by GitHub
commit 4622495e1a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,6 +1,7 @@
{ buildGoModule
, config
, fetchFromGitHub
, nix-update-script
, lib
, nixosTests
, olm
@ -37,13 +38,16 @@ buildGoModule rec {
mautrix-meta-sqlite
;
};
updateScript = nix-update-script { };
};
meta = {
homepage = "https://github.com/mautrix/meta";
description = "Matrix <-> Facebook and Mautrix <-> Instagram hybrid puppeting/relaybot bridge";
description = "Matrix <-> Facebook and Matrix <-> Instagram hybrid puppeting/relaybot bridge";
license = lib.licenses.agpl3Plus;
maintainers = with lib.maintainers; [ rutherther ];
maintainers = with lib.maintainers; [ rutherther eyjhb ];
mainProgram = "mautrix-meta";
};
}