2007-10-23 18:33:11 +02:00
|
|
|
{stdenv, fetchurl, perl}:
|
2007-05-13 16:22:24 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "aspell-0.60.5";
|
2007-10-23 18:33:11 +02:00
|
|
|
|
2007-05-13 16:22:24 +02:00
|
|
|
src = fetchurl {
|
|
|
|
url = ftp://ftp.gnu.org/gnu/aspell/aspell-0.60.5.tar.gz;
|
|
|
|
md5 = "17fd8acac6293336bcef44391b71e337";
|
|
|
|
};
|
2007-10-23 18:33:11 +02:00
|
|
|
|
|
|
|
buildInputs = [perl];
|
2007-05-13 16:22:24 +02:00
|
|
|
|
2008-02-14 10:40:28 +01:00
|
|
|
# Note: Users should define the `ASPELL_CONF' environment variable to
|
|
|
|
# `dict-dir $HOME/.nix-profile/lib/aspell/' so that they can access
|
|
|
|
# dictionaries installed in their profile.
|
|
|
|
#
|
|
|
|
# We can't use `$out/etc/aspell.conf' for that purpose since Aspell
|
|
|
|
# doesn't expand environment variables such as `$HOME'.
|
2007-10-23 18:33:11 +02:00
|
|
|
|
|
|
|
meta = {
|
2008-02-14 10:40:28 +01:00
|
|
|
description = "GNU Aspell, A spell checker for many languages";
|
2007-10-23 18:33:11 +02:00
|
|
|
homepage = http://aspell.net/;
|
|
|
|
license = "LGPL";
|
|
|
|
};
|
2007-05-13 16:22:24 +02:00
|
|
|
}
|