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
48 lines
1.2 KiB
Nix
48 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
nix-update-script,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
olm,
|
|
# 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-whatsapp";
|
|
version = "0.12.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mautrix";
|
|
repo = "whatsapp";
|
|
rev = "v${version}";
|
|
hash = "sha256-FywU4nT/EjEqiC+67FWi3Ni63NI8nqJka6bPdfq1c30=";
|
|
};
|
|
|
|
buildInputs = lib.optional (!withGoolm) olm;
|
|
tags = lib.optional withGoolm "goolm";
|
|
|
|
vendorHash = "sha256-LjlI5zqM1GS+7Sx1mqiwZHM4mPifX7MyLbqEckb90Jo=";
|
|
|
|
doCheck = false;
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/tulir/mautrix-whatsapp";
|
|
description = "Matrix <-> Whatsapp hybrid puppeting/relaybot bridge";
|
|
license = licenses.agpl3Plus;
|
|
maintainers = with maintainers; [
|
|
vskilet
|
|
ma27
|
|
chvp
|
|
SchweGELBin
|
|
];
|
|
mainProgram = "mautrix-whatsapp";
|
|
};
|
|
}
|