about summary refs log tree commit diff
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2020-03-07 02:26:10 +0000
committerR. RyanTM <ryantm-bot@ryantm.com>2020-03-07 02:26:10 +0000
commit60a94c71c4d264c9ab5d29faac8b6be41e71344c (patch)
tree6dd1ba0be1cc3f6c66d4f57e276ac5686a652171
parentdfbe76a68126d03c3f7eb363d7acbb86335b63d3 (diff)
downloadnixlib-60a94c71c4d264c9ab5d29faac8b6be41e71344c.tar
nixlib-60a94c71c4d264c9ab5d29faac8b6be41e71344c.tar.gz
nixlib-60a94c71c4d264c9ab5d29faac8b6be41e71344c.tar.bz2
nixlib-60a94c71c4d264c9ab5d29faac8b6be41e71344c.tar.lz
nixlib-60a94c71c4d264c9ab5d29faac8b6be41e71344c.tar.xz
nixlib-60a94c71c4d264c9ab5d29faac8b6be41e71344c.tar.zst
nixlib-60a94c71c4d264c9ab5d29faac8b6be41e71344c.zip
openmpi: 4.0.2 -> 4.0.3
-rw-r--r--pkgs/development/libraries/openmpi/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/libraries/openmpi/default.nix b/pkgs/development/libraries/openmpi/default.nix
index 5996dda1e74e..30085e950a49 100644
--- a/pkgs/development/libraries/openmpi/default.nix
+++ b/pkgs/development/libraries/openmpi/default.nix
@@ -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 ];