mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
8b17835309
After olm gained knownVulnerabilities in #334638, allow building these bridges using the pure-Go goolm library instead of libolm bindings.
39 lines
1.1 KiB
Nix
39 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
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.10.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mautrix";
|
|
repo = "whatsapp";
|
|
rev = "v${version}";
|
|
hash = "sha256-iVILI6OGndnxIVmgNcIwHA64tkv9V3OTH3YtrCyeYx4=";
|
|
};
|
|
|
|
buildInputs = lib.optional (!withGoolm) olm;
|
|
tags = lib.optional withGoolm "goolm";
|
|
|
|
vendorHash = "sha256-DpgkSXSLF+U6zIzJ4AF2uTcFWQQYsRgkaUTG9F+bnVk=";
|
|
|
|
doCheck = false;
|
|
|
|
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 ];
|
|
mainProgram = "mautrix-whatsapp";
|
|
};
|
|
}
|