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