summary refs log tree commit diff
path: root/pkgs/development/libraries/aspell/default.nix
blob: fdee610771631177d6f4271bf1b1aab93869b19b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{stdenv, fetchurl, perl}:

stdenv.mkDerivation {
  name = "aspell-0.60.5";
  
  src = fetchurl {
    url = ftp://ftp.gnu.org/gnu/aspell/aspell-0.60.5.tar.gz;
    md5 = "17fd8acac6293336bcef44391b71e337";
  };
  
  buildInputs = [perl];

  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";
  };
}