2019-01-05 11:59:25 +00:00
|
|
|
{ stdenv, fetchurl, fetchpatch, fetchzip, perl
|
2017-11-12 10:15:07 +00:00
|
|
|
, searchNixProfiles ? true
|
|
|
|
}:
|
2007-05-13 15:22:24 +01:00
|
|
|
|
2019-01-01 10:57:40 +00:00
|
|
|
let
|
|
|
|
|
|
|
|
# Source for u-deva.cmap and u-deva.cset: use the Marathi
|
|
|
|
# dictionary like Debian does.
|
2019-01-05 11:59:25 +00:00
|
|
|
devaMapsSource = fetchzip {
|
|
|
|
name = "aspell-u-deva";
|
2019-01-01 10:57:40 +00:00
|
|
|
url = "ftp://ftp.gnu.org/gnu/aspell/dict/mr/aspell6-mr-0.10-0.tar.bz2";
|
|
|
|
sha256 = "1v8cdl8x2j1d4vbvsq1xrqys69bbccd6mi03fywrhkrrljviyri1";
|
|
|
|
};
|
|
|
|
|
|
|
|
in
|
|
|
|
|
2009-02-12 19:34:03 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-11-23 23:37:38 +00:00
|
|
|
name = "aspell-0.60.8";
|
2011-08-22 18:37:59 +01:00
|
|
|
|
2007-05-13 15:22:24 +01:00
|
|
|
src = fetchurl {
|
2013-07-14 03:23:06 +01:00
|
|
|
url = "mirror://gnu/aspell/${name}.tar.gz";
|
2019-11-23 23:37:38 +00:00
|
|
|
sha256 = "1wi60ankalmh8ds7nplz434jd7j94gdvbahdwsr539rlad8pxdzr";
|
2007-05-13 15:22:24 +01:00
|
|
|
};
|
2011-08-22 18:37:59 +01:00
|
|
|
|
2019-11-23 23:37:38 +00:00
|
|
|
patches = stdenv.lib.optional searchNixProfiles ./data-dirs-from-nix-profiles.patch;
|
2017-11-12 10:15:07 +00:00
|
|
|
|
|
|
|
postPatch = ''
|
2014-08-17 21:17:13 +01:00
|
|
|
patch interfaces/cc/aspell.h < ${./clang.patch}
|
|
|
|
'';
|
|
|
|
|
2019-11-23 23:37:38 +00:00
|
|
|
buildInputs = [ perl ];
|
2011-08-22 18:37:59 +01:00
|
|
|
|
|
|
|
doCheck = true;
|
2007-05-13 15:22:24 +01:00
|
|
|
|
2014-04-16 18:59:27 +01:00
|
|
|
preConfigure = ''
|
|
|
|
configureFlagsArray=(
|
|
|
|
--enable-pkglibdir=$out/lib/aspell
|
|
|
|
--enable-pkgdatadir=$out/lib/aspell
|
|
|
|
);
|
|
|
|
'';
|
|
|
|
|
2019-01-01 10:57:40 +00:00
|
|
|
# Include u-deva.cmap and u-deva.cset in the aspell package
|
|
|
|
# to avoid conflict between 'mr' and 'hi' dictionaries as they
|
|
|
|
# both include those files.
|
|
|
|
postInstall = ''
|
|
|
|
cp ${devaMapsSource}/u-deva.{cmap,cset} $out/lib/aspell/
|
|
|
|
'';
|
|
|
|
|
2007-10-23 17:33:11 +01:00
|
|
|
meta = {
|
2013-10-05 15:22:46 +01:00
|
|
|
description = "Spell checker for many languages";
|
2007-10-23 17:33:11 +01:00
|
|
|
homepage = http://aspell.net/;
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.lgpl2Plus;
|
2013-08-16 22:44:33 +01:00
|
|
|
maintainers = [ ];
|
2014-10-27 17:52:28 +00:00
|
|
|
platforms = with stdenv.lib.platforms; all;
|
2007-10-23 17:33:11 +01:00
|
|
|
};
|
2007-05-13 15:22:24 +01:00
|
|
|
}
|