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
|
|
|
|
2007-10-23 18:33:11 +02:00
|
|
|
patches = [
|
|
|
|
# A patch that allows additional dictionary directories to be set
|
|
|
|
# specified through the environment variable
|
|
|
|
# ASPELL_EXTRA_DICT_DIRS (comma-separated).
|
|
|
|
./dict-path.patch
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A spell checker for many languages";
|
|
|
|
homepage = http://aspell.net/;
|
|
|
|
license = "LGPL";
|
|
|
|
};
|
2007-05-13 16:22:24 +02:00
|
|
|
}
|