Qt: Difference between revisions
imported>Tobias.bora No edit summary |
imported>Tobias.bora No edit summary |
||
Line 114: | Line 114: | ||
</syntaxHighlight> | </syntaxHighlight> | ||
For actual python applications, you can also use something like | For actual python applications, you can also use something like : | ||
<syntaxHighlight> | <syntaxHighlight> | ||
python3.pkgs.buildPythonApplication { | python3.pkgs.buildPythonApplication { | ||
pname = " | pname = "blabla"; | ||
version = "3.32.2"; | version = "3.32.2"; | ||
nativeBuildInputs = [ | nativeBuildInputs = [ | ||
wrapQtAppsHook | |||
... | ... | ||
]; | ]; | ||
Line 130: | Line 129: | ||
# Arguments to be passed to `makeWrapper`, only used by buildPython* | # Arguments to be passed to `makeWrapper`, only used by buildPython* | ||
preFixup = '' | preFixup = '' | ||
qtWrapperArgs+=("''${gappsWrapperArgs[@]}") | |||
''; | ''; | ||
} | } |