42 lines
1.3 KiB
Nix
42 lines
1.3 KiB
Nix
{
|
|
buildGoApplication,
|
|
olm,
|
|
fetchFromGitHub,
|
|
lib,
|
|
writeScript,
|
|
go,
|
|
}: let
|
|
source = builtins.fromJSON (builtins.readFile ./source.json);
|
|
in
|
|
buildGoApplication rec {
|
|
pname = "mautrix-discord";
|
|
version = source.date;
|
|
src = fetchFromGitHub {
|
|
owner = "mautrix";
|
|
repo = "discord";
|
|
inherit (source) rev sha256;
|
|
};
|
|
modules = ./gomod2nix.toml;
|
|
buildInputs = [
|
|
olm
|
|
];
|
|
CGO_ENABLED = "1";
|
|
meta = {
|
|
description = "Discord-Matrix double-puppeting bridge";
|
|
license = lib.licenses.agpl3;
|
|
broken = builtins.compareVersions go.version "1.18" < 0;
|
|
};
|
|
postConfigure = ''
|
|
chmod -R +w vendor/
|
|
for f in vendor/go.mau.fi/util/variationselector/*.json vendor/golang.org/x/net/publicsuffix/data/* vendor/maunium.net/go/mautrix/crypto/sql_store_upgrade/*.sql vendor/maunium.net/go/mautrix/sqlstatestore/*.sql; do
|
|
cp -v --remove-destination -f `readlink $f` $f
|
|
done
|
|
'';
|
|
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} $SRC_PATH matrix/mautrix-discord/
|
|
fi
|
|
'';
|
|
}
|