From 52a23a959c4492ebf56d00f30f64cb768a5f2d09 Mon Sep 17 00:00:00 2001 From: zenmaya Date: Tue, 27 May 2025 20:48:30 +0200 Subject: [PATCH] aspell: wrap aspell with data-dirs --- pkgs/development/libraries/aspell/aspell-with-dicts.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/aspell/aspell-with-dicts.nix b/pkgs/development/libraries/aspell/aspell-with-dicts.nix index a66e86bf77f9..16afeade6cd9 100644 --- a/pkgs/development/libraries/aspell/aspell-with-dicts.nix +++ b/pkgs/development/libraries/aspell/aspell-with-dicts.nix @@ -30,7 +30,7 @@ buildEnv { pushd "${aspell}/bin" for prg in *; do if [ -f "$prg" ]; then - makeWrapper "${aspell}/bin/$prg" "$out/bin/$prg" --set ASPELL_CONF "dict-dir $out/lib/aspell" + makeWrapper "${aspell}/bin/$prg" "$out/bin/$prg" --set ASPELL_CONF "dict-dir $out/lib/aspell; data-dir $out/share/aspell" fi done popd