hdf5: add maintainer markuskowa

This commit is contained in:
Markus Kowalewski 2023-03-17 14:06:34 +01:00
parent 4fbc3190f5
commit 1030709e0f
No known key found for this signature in database
GPG Key ID: 502A248E3FB4FF48

View File

@ -109,7 +109,7 @@ stdenv.mkDerivation rec {
inherit (python3.pkgs) h5py;
};
meta = {
meta = with lib; {
description = "Data model, library, and file format for storing and managing data";
longDescription = ''
HDF5 supports an unlimited variety of datatypes, and is designed for flexible and efficient
@ -117,8 +117,9 @@ stdenv.mkDerivation rec {
applications to evolve in their use of HDF5. The HDF5 Technology suite includes tools and
applications for managing, manipulating, viewing, and analyzing data in the HDF5 format.
'';
license = lib.licenses.bsd3; # Lawrence Berkeley National Labs BSD 3-Clause variant
license = licenses.bsd3; # Lawrence Berkeley National Labs BSD 3-Clause variant
maintainers = [ maintainers.markuskowa ];
homepage = "https://www.hdfgroup.org/HDF5/";
platforms = lib.platforms.unix;
platforms = platforms.unix;
};
}