This repository has been archived on 2024-10-13. You can view files and clone it, but cannot push or open issues or pull requests.
nix-packages/matrix/mautrix-whatsapp/default.nix

18 lines
423 B
Nix
Raw Normal View History

2022-06-12 14:28:17 +00:00
{
2022-06-13 05:53:33 +00:00
pkgs,
inputs,
...
} @ args: let
2022-06-14 05:21:15 +00:00
inherit ((pkgs.callPackage "${inputs.gomod2nix}/builder" {})) buildGoApplication;
2022-06-13 05:53:33 +00:00
in {
2022-06-12 14:28:17 +00:00
mautrix-whatsapp = buildGoApplication rec {
pname = "mautrix-whatsapp";
version = inputs.mautrix-whatsapp.lastModifiedDate;
2022-06-13 05:53:33 +00:00
src = pkgs.callPackage ./source.nix {};
2022-06-12 14:28:17 +00:00
proxyVendor = true;
modules = ./gomod2nix.toml;
CGO_ENABLED = "1";
2022-06-13 05:53:33 +00:00
buildInputs = [pkgs.olm];
2022-06-12 14:28:17 +00:00
};
}