2010-06-30 16:53:28 +01:00
|
|
|
{ stdenv, fetchurl, ncurses, readline }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2012-08-07 13:44:00 +01:00
|
|
|
name = "hunspell-1.3.2";
|
2010-06-30 16:53:28 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2013-01-14 11:00:32 +00:00
|
|
|
url = "mirror://sourceforge/hunspell/${name}.tar.gz";
|
2012-08-07 13:44:00 +01:00
|
|
|
sha256 = "1gfxdajnqk2civkshkfjx5ldg7kjdgj76m5khpsbjk4lxsjd9vdl";
|
2010-06-30 16:53:28 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ ncurses readline ];
|
|
|
|
configureFlags = "--with-ui --with-readline";
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://hunspell.sourceforge.net;
|
2013-10-06 10:49:53 +01:00
|
|
|
description = "Spell checker";
|
2010-06-30 16:53:28 +01:00
|
|
|
longDescription = ''
|
2013-10-06 10:49:53 +01:00
|
|
|
Hunspell is the spell checker of LibreOffice, OpenOffice.org, Mozilla
|
|
|
|
Firefox 3 & Thunderbird, Google Chrome, and it is also used by
|
|
|
|
proprietary software packages, like Mac OS X, InDesign, memoQ, Opera and
|
|
|
|
SDL Trados.
|
|
|
|
|
2010-06-30 16:53:28 +01:00
|
|
|
Main features:
|
2013-10-06 10:49:53 +01:00
|
|
|
|
2010-06-30 16:53:28 +01:00
|
|
|
* Extended support for language peculiarities; Unicode character encoding, compounding and complex morphology.
|
|
|
|
* Improved suggestion using n-gram similarity, rule and dictionary based pronounciation data.
|
|
|
|
* Morphological analysis, stemming and generation.
|
|
|
|
* Hunspell is based on MySpell and works also with MySpell dictionaries.
|
|
|
|
* C++ library under GPL/LGPL/MPL tri-license.
|
|
|
|
* Interfaces and ports:
|
|
|
|
* Enchant (Generic spelling library from the Abiword project),
|
|
|
|
* XSpell (Mac OS X port, but Hunspell is part of the OS X from version 10.6 (Snow Leopard), and
|
|
|
|
now it is enough to place Hunspell dictionary files into
|
|
|
|
~/Library/Spelling or /Library/Spelling for spell checking),
|
|
|
|
* Delphi, Java (JNA, JNI), Perl, .NET, Python, Ruby ([1], [2]), UNO.
|
|
|
|
'';
|
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = [ maintainers.urkud ];
|
|
|
|
};
|
|
|
|
}
|