summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorMarkus Kowalewski <markus.kowalewski.uu@gmail.com>2018-02-02 12:08:47 -0800
committerMarkus Kowalewski <markus.kowalewski@gmail.com>2018-02-04 15:57:50 -0800
commitbd80130fd9eaa07808f481d15489ae35a3aad3e7 (patch)
tree7ff50a994f82278602bb26179d326dd4ee8e1b6a /pkgs/development
parentff8b077071d50198e82f2a9c11eb6a7aa0df339f (diff)
downloadnixlib-bd80130fd9eaa07808f481d15489ae35a3aad3e7.tar
nixlib-bd80130fd9eaa07808f481d15489ae35a3aad3e7.tar.gz
nixlib-bd80130fd9eaa07808f481d15489ae35a3aad3e7.tar.bz2
nixlib-bd80130fd9eaa07808f481d15489ae35a3aad3e7.tar.lz
nixlib-bd80130fd9eaa07808f481d15489ae35a3aad3e7.tar.xz
nixlib-bd80130fd9eaa07808f481d15489ae35a3aad3e7.tar.zst
nixlib-bd80130fd9eaa07808f481d15489ae35a3aad3e7.zip
mpich2: add maintainer, update license
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/libraries/mpich2/default.nix12
1 files changed, 7 insertions, 5 deletions
diff --git a/pkgs/development/libraries/mpich2/default.nix b/pkgs/development/libraries/mpich2/default.nix
index b7ea23d73bff..4b8e2b651e45 100644
--- a/pkgs/development/libraries/mpich2/default.nix
+++ b/pkgs/development/libraries/mpich2/default.nix
@@ -29,7 +29,7 @@ stdenv.mkDerivation  rec {
   '';
 
 
-  meta = {
+  meta = with stdenv.lib; {
     description = "Implementation of the Message Passing Interface (MPI) standard";
 
     longDescription = ''
@@ -38,9 +38,11 @@ stdenv.mkDerivation  rec {
       version 2.
     '';
     homepage = http://www.mcs.anl.gov/mpi/mpich2/;
-    license = "free, see http://www.mcs.anl.gov/research/projects/mpich2/downloads/index.php?s=license";
-
-    maintainers = [ ];
-    platforms = stdenv.lib.platforms.unix;
+    license = {
+      url = http://git.mpich.org/mpich.git/blob/a385d6d0d55e83c3709ae851967ce613e892cd21:/COPYRIGHT;
+      fullName = "MPICH license (permissive)";
+    };
+    maintainers = [ maintainers.markuskowa ];
+    platforms = platforms.unix;
   };
 }