From af52f533c96d6ccf706de85d47ea79c86210ec80 Mon Sep 17 00:00:00 2001 From: Pyxels <39232833+Pyxels@users.noreply.github.com> Date: Tue, 15 Oct 2024 16:23:31 +0200 Subject: [PATCH] fix(rustfmt): add cargoManifestPath back --- modules/hooks.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/hooks.nix b/modules/hooks.nix index c1ecf65c..94c2586c 100644 --- a/modules/hooks.nix +++ b/modules/hooks.nix @@ -3423,7 +3423,7 @@ lib.escapeShellArgs (lib.concatMap (ext: [ "--ghc-opt" "-X${ext}" ]) hooks.ormol inherit (hooks) rustfmt; inherit (rustfmt) settings; cargoArgs = lib.cli.toGNUCommandLineShell { } { - inherit (settings) all package verbose; + inherit (settings) all package verbose manifest-path; }; rustfmtArgs = lib.cli.toGNUCommandLineShell { } { inherit (settings) check emit config-path color files-with-diff config verbose;