nixpkgs/pkgs/development/libraries/aspell/default.nix
Martin Bravenboer 5983f91836 A pkgs/development/libraries/aspell/builder.sh
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
2007-07-04 01:35:29 +00:00

20 lines
476 B
Nix

{stdenv, fetchurl, perl, which}:
stdenv.mkDerivation {
name = "aspell-0.60.5";
src = fetchurl {
url = ftp://ftp.gnu.org/gnu/aspell/aspell-0.60.5.tar.gz;
md5 = "17fd8acac6293336bcef44391b71e337";
};
builder = ./builder.sh;
buildInputs = [perl which];
dictionaries =
let en = fetchurl {
url = ftp://ftp.gnu.org/gnu/aspell/dict/en/aspell6-en-6.0-0.tar.bz2;
md5 = "16449e0a266e1ecc526b2f3cd39d4bc2";
};
in
[ en ];
}