We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad6a27a commit 1069180Copy full SHA for 1069180
builder/make-config-files.nix
@@ -11,7 +11,9 @@ let
11
12
flagsAndConfig = field: xs: lib.optionalString (xs != []) ''
13
echo ${lib.concatStringsSep " " (map (x: "--${field}=${x}") xs)} >> $configFiles/configure-flags
14
- echo "${field}: ${lib.concatStringsSep " " xs}" >> $configFiles/cabal.config
+ ${lib.concatStrings (map (x: ''
15
+ echo "${field}: ${x}" >> $configFiles/cabal.config
16
+ '') xs)}
17
'';
18
19
target-pkg = "${ghc.targetPrefix}ghc-pkg";
0 commit comments