summary refs log tree commit diff
path: root/pkgs/development/libraries
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2017-08-21 03:32:34 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2017-08-21 03:32:56 +0200
commit96457d26dded05bcba8e9fbb9bf0255596654aab (patch)
tree56c1e2534a2f32f4f270c9359ed7551d822159ad /pkgs/development/libraries
parent1eb48d3b085ee6187e403f00f8d1f221776f0524 (diff)
downloadnixpkgs-96457d26dded05bcba8e9fbb9bf0255596654aab.tar
nixpkgs-96457d26dded05bcba8e9fbb9bf0255596654aab.tar.gz
nixpkgs-96457d26dded05bcba8e9fbb9bf0255596654aab.tar.bz2
nixpkgs-96457d26dded05bcba8e9fbb9bf0255596654aab.tar.lz
nixpkgs-96457d26dded05bcba8e9fbb9bf0255596654aab.tar.xz
nixpkgs-96457d26dded05bcba8e9fbb9bf0255596654aab.tar.zst
nixpkgs-96457d26dded05bcba8e9fbb9bf0255596654aab.zip
aspellWithDicts: fixes #28318
Diffstat (limited to 'pkgs/development/libraries')
-rw-r--r--pkgs/development/libraries/aspell/aspell-with-dicts.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/aspell/aspell-with-dicts.nix b/pkgs/development/libraries/aspell/aspell-with-dicts.nix
index eb96070f4fd..96acfe6c2a8 100644
--- a/pkgs/development/libraries/aspell/aspell-with-dicts.nix
+++ b/pkgs/development/libraries/aspell/aspell-with-dicts.nix
@@ -28,7 +28,7 @@ in runCommand "aspell-env" {
   pushd "${aspell}/bin"
   for prg in *; do
     if [ -f "$prg" ]; then
-      makeWrapper "${aspell}/bin/$prg" "$out/bin/$prg" --set ASPELL_CONF "data-dir ${dictEnv}/lib/aspell"
+      makeWrapper "${aspell}/bin/$prg" "$out/bin/$prg" --set ASPELL_CONF "dict-dir ${dictEnv}/lib/aspell"
     fi
   done
   popd