nixpkgs/pkgs/applications/networking/instant-messengers/riot/riot-web.nix

26 lines
664 B
Nix
Raw Normal View History

2017-08-26 20:49:07 +02:00
{ stdenv, fetchurl, fetchpatch }:
stdenv.mkDerivation rec {
name= "riot-web-${version}";
2017-09-22 18:31:50 +02:00
version = "0.12.6";
2017-08-26 20:49:07 +02:00
src = fetchurl {
url = "https://github.com/vector-im/riot-web/releases/download/v${version}/riot-v${version}.tar.gz";
2017-09-22 18:31:50 +02:00
sha256 = "00hxjhnsm4622hv46xm7lc81kbnzi2iz77qppwma14cbh63jbilv";
2017-08-26 20:49:07 +02:00
};
installPhase = ''
mkdir -p $out/
cp -R . $out/
'';
meta = {
description = "A glossy Matrix collaboration client for the web";
homepage = http://riot.im/;
maintainers = with stdenv.lib.maintainers; [ bachp ];
license = stdenv.lib.licenses.asl20;
platforms = stdenv.lib.platforms.all;
hydraPlatforms = [];
};
}