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

Commits on May 11, 2018

  1. openmpi: 3.0.1 -> 3.1.0 (#40344)

    markuskowa authored and xeji committed May 11, 2018
    Copy the full SHA
    cd9b1b1 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/development/libraries/openmpi/default.nix
6 changes: 3 additions & 3 deletions pkgs/development/libraries/openmpi/default.nix
Original file line number Diff line number Diff line change
@@ -8,15 +8,15 @@
}:

let
majorVersion = "3.0";
minorVersion = "1";
majorVersion = "3.1";
minorVersion = "0";

in stdenv.mkDerivation rec {
name = "openmpi-${majorVersion}.${minorVersion}";

src = fetchurl {
url = "http://www.open-mpi.org/software/ompi/v${majorVersion}/downloads/${name}.tar.bz2";
sha256 = "0pbqrm5faf57nasy1s81wqivl7zvxmv8lzjh8hvb0f3qxv8m0d36";
sha256 = "0v7hrmf1z5d1rmm0z5gi79l536j3z5s5b0kf9q5rr1fc4i0h8p5j";
};

postPatch = ''