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
@ -46,11 +46,13 @@ in python.pkgs.buildPythonApplication {
|
|||||||
propagatedBuildInputs = [ pythonEnv ];
|
propagatedBuildInputs = [ pythonEnv ];
|
||||||
|
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
wrapQtApp "$out/bin/retext" \
|
makeWrapperArgs+=("''${qtWrapperArgs[@]}")
|
||||||
--set ASPELL_CONF "dict-dir ${buildEnv {
|
makeWrapperArgs+=(
|
||||||
|
"--set" "ASPELL_CONF" "dict-dir ${buildEnv {
|
||||||
name = "aspell-all-dicts";
|
name = "aspell-all-dicts";
|
||||||
paths = map (path: "${path}/lib/aspell") enchantAspellDicts;
|
paths = map (path: "${path}/lib/aspell") enchantAspellDicts;
|
||||||
}}"
|
}}"
|
||||||
|
)
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
|
@ -6595,7 +6595,7 @@ in
|
|||||||
|
|
||||||
reredirect = callPackage ../tools/misc/reredirect { };
|
reredirect = callPackage ../tools/misc/reredirect { };
|
||||||
|
|
||||||
retext = libsForQt514.callPackage ../applications/editors/retext { };
|
retext = libsForQt5.callPackage ../applications/editors/retext { };
|
||||||
|
|
||||||
richgo = callPackage ../development/tools/richgo { };
|
richgo = callPackage ../development/tools/richgo { };
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user