5983f91836
M pkgs/development/libraries/aspell/default.nix aspell comes without any dictionaries, so if you actually want to use it you need to install additional dictionary packages. I've added the package for English, but obviously more should be added. Dictionaries are installed in the prefix of aspell. M pkgs/top-level/all-packages.nix aspell dict package for English needs which added an option enableMPlayer to wrapFirefox to disable the MPlayer plugin. It's enabled by default. svn path=/nixpkgs/trunk/; revision=8944
17 lines
261 B
Bash
17 lines
261 B
Bash
source $stdenv/setup
|
|
genericBuild
|
|
|
|
# dictionaries search for aspell and prezip-bin
|
|
export PATH=$out/bin:$PATH
|
|
mkdir dict-tmp
|
|
cd dict-tmp
|
|
for d in $dictionaries; do
|
|
tar jxvf $d
|
|
cd aspell6-*
|
|
./configure
|
|
make
|
|
make install
|
|
rm -rf aspell6-*
|
|
cd ..
|
|
done
|