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: b11d3c1d046b
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: e6391b4389e1
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Jan 23, 2020

  1. 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 4 additions and 1 deletion.
  1. +4 −1 pkgs/development/libraries/physics/cernlib/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";
};