Files
nixpkgs/pkgs/servers/mautrix-whatsapp/default.nix
T
Maximilian Bosch f3df16db3a mautrix-whatsapp: 0.1.9 -> 0.1.10
ChangeLog: https://github.com/mautrix/whatsapp/releases/tag/v0.1.10
(cherry picked from commit 3f24252df0f0412e3b345898fa1c9126b54bed67)
2021-11-03 06:01:27 +00:00

29 lines
679 B
Nix

{ lib, buildGoModule, fetchFromGitHub, olm }:
buildGoModule rec {
pname = "mautrix-whatsapp";
version = "0.1.10";
src = fetchFromGitHub {
owner = "mautrix";
repo = "whatsapp";
rev = "v${version}";
sha256 = "sha256-4eqgmJ5CC1Glc8jG+4cQs6FbrY8Az29rCrZvFU3PAoM=";
};
buildInputs = [ olm ];
vendorSha256 = "sha256-Y9mUl7fWZiXBEEDX3w2HXMlQKJntv16WeQC1bQQ7hHs=";
doCheck = false;
runVend = true;
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 ];
};
}