Make all meta.maintainers attributes lists

This commit is contained in:
Pascal Wittmann
2016-11-20 18:06:03 +01:00
parent 9c5a9f32c6
commit f7e0bc2ae7
11 changed files with 29 additions and 30 deletions
@@ -11,11 +11,11 @@ stdenv.mkDerivation rec {
buildInputs = [ netcdf hdf5 curl gfortran ];
doCheck = true;
meta = {
meta = with stdenv.lib; {
description = "Fortran API to manipulate netcdf files";
homepage = "http://www.unidata.ucar.edu/software/netcdf/";
license = stdenv.lib.licenses.free;
maintainers = stdenv.lib.maintainers.bzizou;
platforms = stdenv.lib.platforms.unix;
homepage = http://www.unidata.ucar.edu/software/netcdf/;
license = licenses.free;
maintainers = [ maintainers.bzizou ];
platforms = platforms.unix;
};
}