From 724cc0cba3030ae9190becfcef0a20af951a800f Mon Sep 17 00:00:00 2001 From: Artturin Date: Mon, 21 Aug 2023 19:57:34 +0300 Subject: makeScopeWithSplicing: fix `makeScopeWithSplicing'` call makeScopeWithSplicing: fix comment --- lib/customisation.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'lib/customisation.nix') diff --git a/lib/customisation.nix b/lib/customisation.nix index c74708fbe4e27..0d023aa361cfc 100644 --- a/lib/customisation.nix +++ b/lib/customisation.nix @@ -281,11 +281,11 @@ rec { /* backward compatibility with old uncurried form; deprecated */ makeScopeWithSplicing = splicePackages: newScope: otherSplices: keep: extra: f: - makeScopeWithSplicing' { - inherit splicePackages newScope otherSplices keep extra f; - }; + makeScopeWithSplicing' + { inherit splicePackages newScope; } + { inherit otherSplices keep extra f; }; - /* Like the above, but aims to support cross compilation. It's still ugly, but + /* Like makeScope, but aims to support cross compilation. It's still ugly, but hopefully it helps a little bit. */ makeScopeWithSplicing' = { splicePackages -- cgit 1.4.1