summary refs log tree commit diff
path: root/pkgs/applications/networking
diff options
context:
space:
mode:
authorworldofpeace <worldofpeace@protonmail.ch>2019-06-30 17:56:08 -0400
committerGitHub <noreply@github.com>2019-06-30 17:56:08 -0400
commit06cf681b6a4f601990169edb8b411b611b088843 (patch)
tree89359e321ddd790252f450704e77022a6c54e8b9 /pkgs/applications/networking
parent4a5c80e7b86c856afa4e49f714f9c05e98b30192 (diff)
parentf38d3ee12c890a1ac7d8daca3fbfe9ebe1a6bfbb (diff)
downloadnixpkgs-06cf681b6a4f601990169edb8b411b611b088843.tar
nixpkgs-06cf681b6a4f601990169edb8b411b611b088843.tar.gz
nixpkgs-06cf681b6a4f601990169edb8b411b611b088843.tar.bz2
nixpkgs-06cf681b6a4f601990169edb8b411b611b088843.tar.lz
nixpkgs-06cf681b6a4f601990169edb8b411b611b088843.tar.xz
nixpkgs-06cf681b6a4f601990169edb8b411b611b088843.tar.zst
nixpkgs-06cf681b6a4f601990169edb8b411b611b088843.zip
Merge pull request #63945 from nyanloutre/riot_1_2_2
riot-{web,desktop}: 1.2.1 -> 1.2.2
Diffstat (limited to 'pkgs/applications/networking')
-rw-r--r--pkgs/applications/networking/instant-messengers/riot/riot-desktop-package.json2
-rw-r--r--pkgs/applications/networking/instant-messengers/riot/riot-desktop.nix4
-rw-r--r--pkgs/applications/networking/instant-messengers/riot/riot-web.nix4
3 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/applications/networking/instant-messengers/riot/riot-desktop-package.json b/pkgs/applications/networking/instant-messengers/riot/riot-desktop-package.json
index b6107559e7b..7c348b88c8a 100644
--- a/pkgs/applications/networking/instant-messengers/riot/riot-desktop-package.json
+++ b/pkgs/applications/networking/instant-messengers/riot/riot-desktop-package.json
@@ -2,7 +2,7 @@
   "name": "riot-web",
   "productName": "Riot",
   "main": "src/electron-main.js",
-  "version": "1.2.1",
+  "version": "1.2.2",
   "description": "A feature-rich client for Matrix.org",
   "author": "New Vector Ltd.",
   "dependencies": {
diff --git a/pkgs/applications/networking/instant-messengers/riot/riot-desktop.nix b/pkgs/applications/networking/instant-messengers/riot/riot-desktop.nix
index f7a7615171f..d6dcd0ee2ef 100644
--- a/pkgs/applications/networking/instant-messengers/riot/riot-desktop.nix
+++ b/pkgs/applications/networking/instant-messengers/riot/riot-desktop.nix
@@ -7,12 +7,12 @@ with (import ./yarn2nix.nix { inherit pkgs; });
 
 let
   executableName = "riot-desktop";
-  version = "1.2.1";
+  version = "1.2.2";
   riot-web-src = fetchFromGitHub {
     owner = "vector-im";
     repo = "riot-web";
     rev = "v${version}";
-    sha256 = "0l50swqzdzbzbnrlkvwi133d54jgj15cj3awmlc1qdhnfdc3wxbb";
+    sha256 = "0ak1icl3apqn1b210jqj9ysnn40808lzrdwibdmv47c30hhq10fb";
   };
 
 in mkYarnPackage rec {
diff --git a/pkgs/applications/networking/instant-messengers/riot/riot-web.nix b/pkgs/applications/networking/instant-messengers/riot/riot-web.nix
index ed6cc7abfa3..61a581e834c 100644
--- a/pkgs/applications/networking/instant-messengers/riot/riot-web.nix
+++ b/pkgs/applications/networking/instant-messengers/riot/riot-web.nix
@@ -6,11 +6,11 @@
 let configFile = writeText "riot-config.json" conf; in
 stdenv.mkDerivation rec {
   name= "riot-web-${version}";
-  version = "1.2.1";
+  version = "1.2.2";
 
   src = fetchurl {
     url = "https://github.com/vector-im/riot-web/releases/download/v${version}/riot-v${version}.tar.gz";
-    sha256 = "1h96c4yy06ag5lmsbm5h2ws1l7sp4qm5dcchw25k3937fdhwq840";
+    sha256 = "19nb6gyjaijah068ika6hvk18hraivm71830i9cd4ssl6g5j4k8x";
   };
 
   installPhase = ''