Skip to content
This repository was archived by the owner on Apr 12, 2021. It is now read-only.
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-channels
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: a0fedb11078b
Choose a base ref
...
head repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: e6391b4389e1
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Jan 23, 2020

  1. Copy the full SHA
    b11d3c1 View commit details
  2. cernlib: add src mirror url

    (cherry picked from commit f4131d2)
    veprbl committed Jan 23, 2020
    Copy the full SHA
    e6391b4 View commit details
Showing with 6 additions and 3 deletions.
  1. +4 −1 pkgs/development/libraries/physics/cernlib/default.nix
  2. +2 −2 pkgs/servers/matrix-synapse/default.nix
5 changes: 4 additions & 1 deletion pkgs/development/libraries/physics/cernlib/default.nix
Original file line number Diff line number Diff line change
@@ -5,7 +5,10 @@ stdenv.mkDerivation rec {
pname = "cernlib";

src = fetchurl {
url = "https://cernlib.web.cern.ch/cernlib/download/${version}_source/tar/${version}_src.tar.gz";
urls = [
"https://ftp.riken.jp/cernlib/download/${version}_source/tar/${version}_src.tar.gz"
"https://cernlib.web.cern.ch/cernlib/download/${version}_source/tar/${version}_src.tar.gz"
];
sha256 = "0awla1rl96z82br7slcmg8ks1d2a7slk6dj79ywb871j2ksi3fky";
};

4 changes: 2 additions & 2 deletions pkgs/servers/matrix-synapse/default.nix
Original file line number Diff line number Diff line change
@@ -23,11 +23,11 @@ let

in buildPythonApplication rec {
pname = "matrix-synapse";
version = "1.8.0";
version = "1.9.0";

src = fetchPypi {
inherit pname version;
sha256 = "0dkx53hxafqjs05g240zna2v3l3ndpa4y4z5x85v8dvv5zkibdxz";
sha256 = "0ghmxzk2njid7d7ccggda8a9zx4dg1r59n5ymp8f2n9kxz7z2rj2";
};

patches = [