treewide: improve prepending and appending derivation arguments in bash code

Those would be problematic with __structuredAttrs turned on, because
they'd turn those nice bash arrays back into strings - and potentially
lose some of the values on the way.
This commit is contained in:
Wolfgang Walther
2024-11-25 09:09:23 +01:00
parent a196ca60d8
commit d86588d230
53 changed files with 129 additions and 116 deletions
@@ -83,7 +83,7 @@ in {
generatePythonPackage {
pname = "cyclic-dependencies";
preFixup = ''
propagatedBuildInputs+=("$out")
appendToVar propagatedBuildInputs "$out"
'';
};