mpich2: add maintainer, update license

authored by Markus Kowalewski and committed by Markus Kowalewski bd80130f ff8b0770

+7 -5
+7 -5
pkgs/development/libraries/mpich2/default.nix
··· 29 29 ''; 30 30 31 31 32 - meta = { 32 + meta = with stdenv.lib; { 33 33 description = "Implementation of the Message Passing Interface (MPI) standard"; 34 34 35 35 longDescription = '' ··· 38 38 version 2. 39 39 ''; 40 40 homepage = http://www.mcs.anl.gov/mpi/mpich2/; 41 - license = "free, see http://www.mcs.anl.gov/research/projects/mpich2/downloads/index.php?s=license"; 42 - 43 - maintainers = [ ]; 44 - platforms = stdenv.lib.platforms.unix; 41 + license = { 42 + url = http://git.mpich.org/mpich.git/blob/a385d6d0d55e83c3709ae851967ce613e892cd21:/COPYRIGHT; 43 + fullName = "MPICH license (permissive)"; 44 + }; 45 + maintainers = [ maintainers.markuskowa ]; 46 + platforms = platforms.unix; 45 47 }; 46 48 }