h5utils: remove more 'with lib'

This commit is contained in:
Stefan Frijters 2024-07-14 14:09:56 +02:00
parent 9aaab7493c
commit 4a965c5df1
No known key found for this signature in database
GPG Key ID: 7619A6BC6E7DFA6F

View File

@ -38,14 +38,14 @@ stdenv.mkDerivation (finalAttrs: {
++ lib.optional (hdf4 != null) hdf4
++ lib.optional (libmatheval != null) libmatheval;
meta = with lib; {
meta = {
description = "Set of utilities for visualization and conversion of scientific data in the free, portable HDF5 format";
homepage = "https://github.com/stevengj/h5utils";
changelog = "https://github.com/NanoComp/h5utils/releases/tag/${finalAttrs.version}";
license = with licenses; [
license = with lib.licenses; [
mit
gpl2Plus
];
maintainers = with maintainers; [ sfrijters ];
maintainers = [ lib.maintainers.sfrijters ];
};
})