Skip to content

Commit

Permalink
riot-web: init at 0.12.2 (#28585)
Browse files Browse the repository at this point in the history
  • Loading branch information
bachp authored and Mic92 committed Aug 26, 2017
1 parent ee1f121 commit e244067
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
25 changes: 25 additions & 0 deletions pkgs/applications/networking/instant-messengers/riot/riot-web.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{ stdenv, fetchurl, fetchpatch }:

stdenv.mkDerivation rec {
name= "riot-web-${version}";
version = "0.12.2";

src = fetchurl {
url = "https://github.com/vector-im/riot-web/releases/download/v${version}/riot-v${version}.tar.gz";
sha256 = "0zyddpnng1vjli12hn1hd0w99g6sfsk80dn2ll5h9276nc677pnh";
};

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 = [];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -1143,6 +1143,8 @@ with pkgs;

ring-daemon = callPackage ../applications/networking/instant-messengers/ring-daemon { };

riot-web = callPackage ../applications/networking/instant-messengers/riot/riot-web.nix { };

rsyslog = callPackage ../tools/system/rsyslog {
hadoop = null; # Currently Broken
czmq = czmq3;
Expand Down

0 comments on commit e244067

Please sign in to comment.