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

Commits on Mar 7, 2020

  1. openmpi: 4.0.2 -> 4.0.3

    r-ryantm committed Mar 7, 2020

    Verified

    This commit was signed with the committer’s verified signature.
    jabranham Alex Branham
    Copy the full SHA
    60a94c7 View commit details
  2. Merge pull request #81948 from r-ryantm/auto-update/openmpi

    openmpi: 4.0.2 -> 4.0.3
    markuskowa authored Mar 7, 2020
    Copy the full SHA
    b0dfbb7 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
@@ -14,7 +14,7 @@
assert !cudaSupport || cudatoolkit != null;

let
version = "4.0.2";
version = "4.0.3";

cudatoolkit_joined = symlinkJoin {
name = "${cudatoolkit.name}-unsplit";
@@ -26,7 +26,7 @@ in stdenv.mkDerivation rec {

src = with stdenv.lib.versions; fetchurl {
url = "https://www.open-mpi.org/software/ompi/v${major version}.${minor version}/downloads/${pname}-${version}.tar.bz2";
sha256 = "0ms0zvyxyy3pnx9qwib6zaljyp2b3ixny64xvq3czv3jpr8zf2wh";
sha256 = "00zxcw99gr5n693cmcmn4f6a47vx1ywna895p0x7p163v37gw0hl";
};

postPatch = ''
@@ -88,7 +88,7 @@ in stdenv.mkDerivation rec {
};

meta = with stdenv.lib; {
homepage = https://www.open-mpi.org/;
homepage = "https://www.open-mpi.org/";
description = "Open source MPI-3 implementation";
longDescription = "The Open MPI Project is an open source MPI-3 implementation that is developed and maintained by a consortium of academic, research, and industry partners. Open MPI is therefore able to combine the expertise, technologies, and resources from all across the High Performance Computing community in order to build the best MPI library available. Open MPI offers advantages for system and software vendors, application developers and computer science researchers.";
maintainers = with maintainers; [ markuskowa ];