From 4a965c5df18e481dca59d0b4ce38c3dd217c6140 Mon Sep 17 00:00:00 2001 From: Stefan Frijters Date: Sun, 14 Jul 2024 14:09:56 +0200 Subject: [PATCH] h5utils: remove more 'with lib' --- pkgs/by-name/h5/h5utils/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/h5/h5utils/package.nix b/pkgs/by-name/h5/h5utils/package.nix index 41f23dda2a42..3c93a3f2a407 100644 --- a/pkgs/by-name/h5/h5utils/package.nix +++ b/pkgs/by-name/h5/h5utils/package.nix @@ -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 ]; }; })