diff --git a/pkgs/tools/misc/hdf5/default.nix b/pkgs/tools/misc/hdf5/default.nix index b749e1ab9e13..66c20078afb0 100644 --- a/pkgs/tools/misc/hdf5/default.nix +++ b/pkgs/tools/misc/hdf5/default.nix @@ -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; }; }