From 7ab199ac2b39ea84a8632c9330219ec55cbdd7fd Mon Sep 17 00:00:00 2001 From: maralorn Date: Fri, 16 Aug 2024 10:16:58 +0200 Subject: [PATCH] haskellPackages: fix formatting --- .../haskell-modules/configuration-ghcjs-9.x.nix | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-ghcjs-9.x.nix b/pkgs/development/haskell-modules/configuration-ghcjs-9.x.nix index 5af8de96a4e7..77ce56a9124c 100644 --- a/pkgs/development/haskell-modules/configuration-ghcjs-9.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghcjs-9.x.nix @@ -3,7 +3,9 @@ with haskellLib; let - disableParallelBuilding = overrideCabal (drv: { enableParallelBuilding = false; }); + disableParallelBuilding = overrideCabal (drv: { + enableParallelBuilding = false; + }); in # cabal2nix doesn't properly add dependencies conditional on arch(javascript) @@ -28,8 +30,11 @@ in reflex-dom = super.reflex-dom.override (drv: { jsaddle-webkit2gtk = null; }); - patch = pkgs.lib.pipe super.patch (with haskellLib; [ - disableParallelBuilding # https://gitlab.haskell.org/ghc/ghc/-/issues/25083#note_578275 - doJailbreak - ]); + patch = pkgs.lib.pipe super.patch ( + with haskellLib; + [ + disableParallelBuilding # https://gitlab.haskell.org/ghc/ghc/-/issues/25083#note_578275 + doJailbreak + ] + ); })