nix-packages/matrix/mautrix-discord/default.nix

38 lines
1.1 KiB
Nix
Raw Normal View History

2022-07-20 08:36:55 +00:00
{
2022-09-25 19:06:33 +00:00
buildGoModule,
olm,
fetchFromGitHub,
lib,
writeScript,
2022-11-04 17:10:13 +00:00
go,
2022-09-25 19:06:33 +00:00
}: let
source = builtins.fromJSON (builtins.readFile ./source.json);
in
buildGoModule rec {
2022-07-20 08:36:55 +00:00
pname = "mautrix-discord";
2022-09-25 19:06:33 +00:00
version = source.date;
src = fetchFromGitHub {
owner = "mautrix";
repo = "discord";
inherit (source) rev sha256;
};
vendorSha256 = builtins.readFile ./vendor.sha256;
buildInputs = [
olm
];
2022-07-20 08:36:55 +00:00
proxyVendor = true;
CGO_ENABLED = "1";
2022-09-25 19:06:33 +00:00
meta = {
description = "Discord-Matrix double-puppeting bridge";
license = lib.licenses.agpl3;
2022-11-04 15:34:43 +00:00
broken = builtins.compareVersions go.version "1.18" < 0;
2022-09-25 19:06:33 +00:00
};
passthru.updateScript = writeScript "update-matrix-media-repo" ''
${../../scripts/update-git.sh} "https://github.com/mautrix/discord" matrix/mautrix-discord/source.json
if [ "$(git diff -- matrix/mautrix-discord/source.json)" ]; then
SRC_PATH=$(nix-build -E '(import ./. {}).${pname}.src')
${../../scripts/update-go.sh} ./matrix/mautrix-discord matrix/mautrix-discord/vendor.sha256
fi
2022-09-25 19:06:33 +00:00
'';
}