openmpi: don't overuse 'with lib;' in meta

This commit is contained in:
Doron Behar
2024-08-06 19:54:58 +03:00
parent f25c42c4da
commit 5ee3a6e510
@@ -172,12 +172,12 @@ stdenv.mkDerivation rec {
cudatoolkit = cudaPackages.cudatoolkit; # For backward compatibility only
};
meta = with lib; {
meta = {
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 ];
license = licenses.bsd3;
platforms = platforms.unix;
maintainers = with lib.maintainers; [ markuskowa ];
license = lib.licenses.bsd3;
platforms = lib.platforms.unix;
};
}