lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #17200 from knedlsepp/openmpi-for-darwin

openmpi: Remove libibverbs on unsupported platforms

authored by

Nikolay Amiantov and committed by
GitHub
79ad32fd 77a73115

+3 -1
+3 -1
pkgs/development/libraries/openmpi/default.nix
··· 26 26 # https://www.open-mpi.org/community/lists/users/2015/11/28030.php 27 27 patches = [ ./nbc_copy.patch ]; 28 28 29 - buildInputs = [ gfortran libibverbs ]; 29 + buildInputs = [ gfortran ] 30 + ++ optional (stdenv.isLinux || stdenv.isFreeBSD) libibverbs; 30 31 31 32 nativeBuildInputs = [ perl ]; 32 33 ··· 46 47 description = "Open source MPI-2 implementation"; 47 48 longDescription = "The Open MPI Project is an open source MPI-2 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."; 48 49 maintainers = [ stdenv.lib.maintainers.mornfall ]; 50 + platforms = platforms.unix; 49 51 }; 50 52 }