2016-09-11 21:24:51 +00:00
|
|
|
{stdenv, fetchurl, gtk2, aspell, pkgconfig, enchant, intltool}:
|
2007-05-13 14:22:24 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2013-07-14 00:09:34 +00:00
|
|
|
name = "gtkspell-2.0.16";
|
2018-10-12 21:20:54 +00:00
|
|
|
|
2007-05-13 14:22:24 +00:00
|
|
|
src = fetchurl {
|
2013-07-14 00:09:34 +00:00
|
|
|
url = mirror://sourceforge/gtkspell/gtkspell-2.0.16.tar.gz;
|
|
|
|
sha256 = "00hdv28bp72kg1mq2jdz1sdw2b8mb9iclsp7jdqwpck705bdriwg";
|
2007-05-13 14:22:24 +00:00
|
|
|
};
|
2018-10-12 21:20:54 +00:00
|
|
|
|
2017-09-05 21:26:13 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [aspell gtk2 enchant intltool];
|
2016-08-02 16:06:29 +00:00
|
|
|
|
2018-10-12 21:20:54 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Word-processor-style highlighting and replacement of misspelled words";
|
|
|
|
homepage = http://gtkspell.sourceforge.net;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
license = licenses.gpl2;
|
2016-08-02 16:06:29 +00:00
|
|
|
};
|
2007-05-13 14:22:24 +00:00
|
|
|
}
|