mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 03:17:13 +00:00
34 lines
939 B
Nix
34 lines
939 B
Nix
{ lib, stdenv, fetchurl, writeText, conf ? null }:
|
|
|
|
# Note for maintainers:
|
|
# Versions of `riot-web` and `riot-desktop` should be kept in sync.
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "riot-web";
|
|
version = "1.4.2";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/vector-im/riot-web/releases/download/v${version}/riot-v${version}.tar.gz";
|
|
sha256 = "0bbal3y4clgp7j703f3ll5zwhbpjz6zpw3qslwza6lik4g4k0vaj";
|
|
};
|
|
|
|
installPhase = let
|
|
configFile = if (conf != null)
|
|
then writeText "riot-config.json" conf
|
|
else "$out/config.sample.json";
|
|
in ''
|
|
mkdir -p $out/
|
|
cp -R . $out/
|
|
ln -s ${configFile} $out/config.json
|
|
'';
|
|
|
|
meta = {
|
|
description = "A glossy Matrix collaboration client for the web";
|
|
homepage = http://riot.im/;
|
|
maintainers = with stdenv.lib.maintainers; [ bachp pacien ];
|
|
license = stdenv.lib.licenses.asl20;
|
|
platforms = stdenv.lib.platforms.all;
|
|
hydraPlatforms = [];
|
|
};
|
|
}
|