Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 4a5c80e7b86c
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 06cf681b6a4f
Choose a head ref
  • 3 commits
  • 3 files changed
  • 2 contributors

Commits on Jun 30, 2019

  1. riot-web: 1.2.1 -> 1.2.2

    nyanloutre committed Jun 30, 2019
    Copy the full SHA
    26a0e5f View commit details
  2. Copy the full SHA
    f38d3ee View commit details
  3. Merge pull request #63945 from nyanloutre/riot_1_2_2

    riot-{web,desktop}: 1.2.1 -> 1.2.2
    worldofpeace authored Jun 30, 2019
    Copy the full SHA
    06cf681 View commit details
Original file line number Diff line number Diff line change
@@ -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": {
Original file line number Diff line number Diff line change
@@ -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 {
Original file line number Diff line number Diff line change
@@ -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 = ''