From ac97a9a46d559e0990000735a56650b21aeb4fe4 Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Tue, 27 Oct 2020 16:07:52 +0100 Subject: [PATCH] ocamlPackages.mirage-block: refactor `meta` attribute set Co-authored-by: Sandro --- pkgs/development/ocaml-modules/mirage-block/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/ocaml-modules/mirage-block/default.nix b/pkgs/development/ocaml-modules/mirage-block/default.nix index fc9a6b6f06b..28eb4d6b28e 100644 --- a/pkgs/development/ocaml-modules/mirage-block/default.nix +++ b/pkgs/development/ocaml-modules/mirage-block/default.nix @@ -15,10 +15,10 @@ buildDunePackage rec { propagatedBuildInputs = [ cstruct lwt mirage-device ]; - meta = { + meta = with lib; { description = "Block signatures and implementations for MirageOS"; homepage = "https://github.com/mirage/mirage-block"; - license = lib.licenses.isc; - maintainers = [ lib.maintainers.vbgl ]; + license = licenses.isc; + maintainers = with maintainers; [ vbgl ]; }; }