From 66d99d6ded2daff76b0c250d9644a4a83da18e78 Mon Sep 17 00:00:00 2001 From: redianthus Date: Wed, 26 Nov 2025 11:46:31 +0100 Subject: [PATCH] ocamlPackages.logs: small cleaning --- pkgs/development/ocaml-modules/logs/default.nix | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/pkgs/development/ocaml-modules/logs/default.nix b/pkgs/development/ocaml-modules/logs/default.nix index 7d2a0f844ec8..0f80db5c04e0 100644 --- a/pkgs/development/ocaml-modules/logs/default.nix +++ b/pkgs/development/ocaml-modules/logs/default.nix @@ -69,17 +69,15 @@ buildTopkgPackage { inherit (param) sha512; }; - buildInputs = [ topkg ] ++ optional_buildInputs; - - strictDeps = true; + buildInputs = optional_buildInputs; buildPhase = "${topkg.run} build ${lib.escapeShellArgs enable_flags}"; - meta = with lib; { + meta = { description = "Logging infrastructure for OCaml"; homepage = webpage; inherit (ocaml.meta) platforms; - maintainers = [ maintainers.sternenseemann ]; - license = licenses.isc; + maintainers = with lib.maintainers; [ sternenseemann ]; + license = lib.licenses.isc; }; }