ingen: expand pythonPath bash array for structuredAttrs

This commit is contained in:
Stefan Frijters
2026-01-27 11:53:07 +01:00
parent ca797d5425
commit 8e610063c8
+1 -1
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"
'';