retext: Fix build by using default qt5.15.
Bonus: Set `makeWrapperArgs` instead of calling `wrapQtApp` - to prevent double wrapping.
This commit is contained in:
parent
2d238fc6b0
commit
198e025172
2 changed files with 5 additions and 3 deletions
|
@ -46,11 +46,13 @@ in python.pkgs.buildPythonApplication {
|
|||
propagatedBuildInputs = [ pythonEnv ];
|
||||
|
||||
postInstall = ''
|
||||
wrapQtApp "$out/bin/retext" \
|
||||
--set ASPELL_CONF "dict-dir ${buildEnv {
|
||||
makeWrapperArgs+=("''${qtWrapperArgs[@]}")
|
||||
makeWrapperArgs+=(
|
||||
"--set" "ASPELL_CONF" "dict-dir ${buildEnv {
|
||||
name = "aspell-all-dicts";
|
||||
paths = map (path: "${path}/lib/aspell") enchantAspellDicts;
|
||||
}}"
|
||||
)
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
|
|
|
@ -6595,7 +6595,7 @@ in
|
|||
|
||||
reredirect = callPackage ../tools/misc/reredirect { };
|
||||
|
||||
retext = libsForQt514.callPackage ../applications/editors/retext { };
|
||||
retext = libsForQt5.callPackage ../applications/editors/retext { };
|
||||
|
||||
richgo = callPackage ../development/tools/richgo { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue