2016-09-11 14:24:51 -07:00
|
|
|
{stdenv, fetchurl, gtk2, aspell, pkgconfig, enchant, intltool}:
|
2007-05-13 07:22:24 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2013-07-13 17:09:34 -07:00
|
|
|
name = "gtkspell-2.0.16";
|
2007-05-13 07:22:24 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2013-07-13 17:09:34 -07:00
|
|
|
url = mirror://sourceforge/gtkspell/gtkspell-2.0.16.tar.gz;
|
|
|
|
sha256 = "00hdv28bp72kg1mq2jdz1sdw2b8mb9iclsp7jdqwpck705bdriwg";
|
2007-05-13 07:22:24 -07:00
|
|
|
};
|
|
|
|
|
2017-09-05 14:26:13 -07:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [aspell gtk2 enchant intltool];
|
2016-08-02 09:06:29 -07:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
platforms = stdenv.lib.platforms.unix;
|
|
|
|
};
|
2007-05-13 07:22:24 -07:00
|
|
|
}
|