2020-02-17 15:54:13 +00:00
|
|
|
{ lib, stdenv, fetchurl, writeText, jq, conf ? {} }:
|
2017-08-26 19:49:07 +01:00
|
|
|
|
2019-05-02 23:59:48 +01:00
|
|
|
# Note for maintainers:
|
|
|
|
# Versions of `riot-web` and `riot-desktop` should be kept in sync.
|
|
|
|
|
2020-02-17 15:54:13 +00:00
|
|
|
let
|
|
|
|
noPhoningHome = {
|
|
|
|
disable_guests = true; # disable automatic guest account registration at matrix.org
|
|
|
|
piwik = false; # disable analytics
|
|
|
|
};
|
|
|
|
configOverrides = writeText "riot-config-overrides.json" (builtins.toJSON (noPhoningHome // conf));
|
|
|
|
|
|
|
|
in stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "riot-web";
|
2020-06-29 18:36:26 +01:00
|
|
|
version = "1.6.7";
|
2017-08-26 19:49:07 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/vector-im/riot-web/releases/download/v${version}/riot-v${version}.tar.gz";
|
2020-06-29 18:36:26 +01:00
|
|
|
sha256 = "14g5rbvcw6p0q50slbf0c7s39i54ggv2cjc5iv93yvfrwn3z0f8p";
|
2017-08-26 19:49:07 +01:00
|
|
|
};
|
|
|
|
|
2020-02-17 15:54:13 +00:00
|
|
|
installPhase = ''
|
2019-12-10 14:54:05 +00:00
|
|
|
runHook preInstall
|
|
|
|
|
2017-08-26 19:49:07 +01:00
|
|
|
mkdir -p $out/
|
|
|
|
cp -R . $out/
|
2020-02-17 15:54:13 +00:00
|
|
|
${jq}/bin/jq -s '.[0] * .[1]' "config.sample.json" "${configOverrides}" > "$out/config.json"
|
2019-12-10 14:54:05 +00:00
|
|
|
|
|
|
|
runHook postInstall
|
2017-08-26 19:49:07 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A glossy Matrix collaboration client for the web";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://riot.im/";
|
2020-06-12 02:05:26 +01:00
|
|
|
maintainers = stdenv.lib.teams.matrix.members;
|
2017-08-26 19:49:07 +01:00
|
|
|
license = stdenv.lib.licenses.asl20;
|
|
|
|
platforms = stdenv.lib.platforms.all;
|
|
|
|
hydraPlatforms = [];
|
|
|
|
};
|
|
|
|
}
|