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

View File

@ -46,7 +46,8 @@ stdenv.mkDerivation rec {
remarshal -i "$privateBuildPlanJSONPath" -o private-build-plans.toml -if json -of toml remarshal -i "$privateBuildPlanJSONPath" -o private-build-plans.toml -if json -of toml
''} ''}
${lib.optionalString (extraParameters != null) '' ${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 runHook postConfigure
''; '';