1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-17 19:21:04 +00:00

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
, fetchFromGitHub
, nix-update-script
, lib
, nixosTests
, olm
@ -36,13 +37,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";
};
}