ingen: expand pythonPath bash array for structuredAttrs

This commit is contained in:
Stefan Frijters
2026-01-23 14:34:00 +01:00
parent ca797d5425
commit 8e610063c8

View File

@@ -61,7 +61,7 @@ stdenv.mkDerivation {
];
postInstall = ''
wrapPythonProgramsIn "$out/bin" "$out $pythonPath"
wrapPythonProgramsIn "$out/bin" "$out ''${pythonPath[*]}"
wrapProgram "$out/bin/ingen" --set INGEN_UI_PATH "$out/share/ingen/ingen_gui.ui"
'';