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-discord/default.nix

19 lines
453 B
Nix
Raw Normal View History

2022-07-20 08:36:55 +00:00
{
pkgs,
inputs,
...
} @ args: let
inherit ((pkgs.callPackage "${inputs.gomod2nix}/builder" {})) buildGoApplication;
in {
mautrix-discord = buildGoApplication rec {
pname = "mautrix-discord";
version = inputs.mautrix-discord.lastModifiedDate;
src = pkgs.callPackage ./source.nix {};
2022-08-24 00:32:17 +00:00
patches = [./sticker.patch];
2022-07-20 08:36:55 +00:00
proxyVendor = true;
modules = ./gomod2nix.toml;
CGO_ENABLED = "1";
buildInputs = [pkgs.olm];
};
}