mautrix-meta: adds maintainer, adds automatic updating (#338768)

This commit is contained in:
K900 2024-09-06 11:32:51 +03:00 committed by GitHub
commit cedcff6b49
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,5 +1,6 @@
{ buildGoModule { buildGoModule
, fetchFromGitHub , fetchFromGitHub
, nix-update-script
, lib , lib
, nixosTests , nixosTests
, olm , olm
@ -36,13 +37,16 @@ buildGoModule rec {
mautrix-meta-sqlite mautrix-meta-sqlite
; ;
}; };
updateScript = nix-update-script { };
}; };
meta = { meta = {
homepage = "https://github.com/mautrix/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; license = lib.licenses.agpl3Plus;
maintainers = with lib.maintainers; [ rutherther ]; maintainers = with lib.maintainers; [ rutherther eyjhb ];
mainProgram = "mautrix-meta"; mainProgram = "mautrix-meta";
}; };
} }