iosevka: Append extraParameters instead of overwriting

This commit is contained in:
Riley Inman 2019-09-22 14:04:58 -04:00
parent 98a7d7990e
commit 8bfb67929d
1 changed files with 2 additions and 1 deletions

View File

@ -46,7 +46,8 @@ stdenv.mkDerivation rec {
remarshal -i "$privateBuildPlanJSONPath" -o private-build-plans.toml -if json -of toml
''}
${lib.optionalString (extraParameters != null) ''
remarshal -i "$extraParametersJSONPath" -o parameters.toml -if json -of toml
echo -e "\n" >> parameters.toml
remarshal -i "$extraParametersJSONPath" -if json -of toml >> parameters.toml
''}
runHook postConfigure
'';