Files
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

56 lines
1.4 KiB
Nix

{
lib,
buildGoModule,
fetchFromGitHub,
olm,
nix-update-script,
testers,
mautrix-gmessages,
# This option enables the use of an experimental pure-Go implementation of the
# Olm protocol instead of libolm for end-to-end encryption. Using goolm is not
# recommended by the mautrix developers, but they are interested in people
# trying it out in non-production-critical environments and reporting any
# issues they run into.
withGoolm ? false,
}:
buildGoModule rec {
pname = "mautrix-gmessages";
version = "0.6.5";
src = fetchFromGitHub {
owner = "mautrix";
repo = "gmessages";
tag = "v${version}";
hash = "sha256-AIw7Grh4BEDT33N4004XjOtIepguO2SbdUmTHGJ1A2M=";
};
vendorHash = "sha256-73a+OyauFJv2Rx6tbjwN9SBaXu4ZL5qM5xFt5m8a7c4=";
ldflags = [
"-s"
"-w"
"-X"
"main.Tag=${version}"
];
buildInputs = lib.optional (!withGoolm) olm;
tags = lib.optional withGoolm "goolm";
doCheck = false;
passthru = {
updateScript = nix-update-script { };
tests.version = testers.testVersion { package = mautrix-gmessages; };
};
meta = with lib; {
description = "Matrix-Google Messages puppeting bridge";
homepage = "https://github.com/mautrix/gmessages";
changelog = "https://github.com/mautrix/gmessages/blob/${src.rev}/CHANGELOG.md";
license = licenses.agpl3Only;
maintainers = with maintainers; [ sumnerevans ];
mainProgram = "mautrix-gmessages";
};
}