From 5837aedb4de3fbd171d2148f373554798f5af0c4 Mon Sep 17 00:00:00 2001 From: Austin Horstman Date: Mon, 14 Oct 2024 12:30:46 -0500 Subject: [PATCH] nufmt: format --- pkgs/development/tools/nufmt/default.nix | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/pkgs/development/tools/nufmt/default.nix b/pkgs/development/tools/nufmt/default.nix index e5e656877ef9..54f816e281e9 100644 --- a/pkgs/development/tools/nufmt/default.nix +++ b/pkgs/development/tools/nufmt/default.nix @@ -1,4 +1,3 @@ - { lib, stdenv, @@ -18,9 +17,12 @@ rustPlatform.buildRustPackage rec { hash = "sha256-BwKLl8eMCrqVt9PA5SHAXxu3ypP2ePcSuljKL+wSkvw="; }; - buildInputs = lib.optionals stdenv.hostPlatform.isDarwin (with darwin.apple_sdk.frameworks; [ - IOKit - ]); + buildInputs = lib.optionals stdenv.hostPlatform.isDarwin ( + with darwin.apple_sdk.frameworks; + [ + IOKit + ] + ); cargoHash = "sha256-16Z20opeZpoa7h258um+grL3ktPmY4P0M/tqMTr5hYc="; @@ -28,6 +30,6 @@ rustPlatform.buildRustPackage rec { description = "Nushell formatter"; homepage = "https://github.com/nushell/nufmt"; license = licenses.mit; - maintainers = with maintainers; [iogamaster]; + maintainers = with maintainers; [ iogamaster ]; }; }