about summary refs log tree commit diff
path: root/pkgs/applications/networking/instant-messengers/riot/riot-web.nix
diff options
context:
space:
mode:
authorPascal Bach <pasci.bach@gmail.com>2017-08-26 20:49:07 +0200
committerJörg Thalheim <Mic92@users.noreply.github.com>2017-08-26 19:49:07 +0100
commite244067dff99c10a03d0ca9982dfed6aa28b3b90 (patch)
tree1f26d939dac96a611206938ff6cf4b1f82da0e5f /pkgs/applications/networking/instant-messengers/riot/riot-web.nix
parentee1f1216c6bd7394594b3ed69f5029ba2ebcf648 (diff)
downloadnixlib-e244067dff99c10a03d0ca9982dfed6aa28b3b90.tar
nixlib-e244067dff99c10a03d0ca9982dfed6aa28b3b90.tar.gz
nixlib-e244067dff99c10a03d0ca9982dfed6aa28b3b90.tar.bz2
nixlib-e244067dff99c10a03d0ca9982dfed6aa28b3b90.tar.lz
nixlib-e244067dff99c10a03d0ca9982dfed6aa28b3b90.tar.xz
nixlib-e244067dff99c10a03d0ca9982dfed6aa28b3b90.tar.zst
nixlib-e244067dff99c10a03d0ca9982dfed6aa28b3b90.zip
riot-web: init at 0.12.2 (#28585)
Diffstat (limited to 'pkgs/applications/networking/instant-messengers/riot/riot-web.nix')
-rw-r--r--pkgs/applications/networking/instant-messengers/riot/riot-web.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/applications/networking/instant-messengers/riot/riot-web.nix b/pkgs/applications/networking/instant-messengers/riot/riot-web.nix
new file mode 100644
index 000000000000..ea6ec1676ec8
--- /dev/null
+++ b/pkgs/applications/networking/instant-messengers/riot/riot-web.nix
@@ -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 = [];
+  };
+}