gtkspell:3.0.8 -> 3.0.9

This commit is contained in:
ndowens 2017-03-12 20:38:46 -05:00
parent 54b7c3b63f
commit afeb989c5c

View File

@ -2,21 +2,22 @@
stdenv.mkDerivation rec {
name = "gtkspell-${version}";
version = "3.0.8";
version = "3.0.9";
src = fetchurl {
url = "mirror://sourceforge/gtkspell/gtkspell3-${version}.tar.gz";
sha256 = "1zrz5pz4ryvcssk898liynmy2wyxgj95ak7mp2jv7x62yzihq6h1";
url = "mirror://sourceforge/gtkspell/gtkspell3-${version}.tar.xz";
sha256 = "09jdicmpipmj4v84gnkqwbmj4lh8v0i6pn967rb9jx4zg2ia9x54";
};
buildInputs = [ aspell pkgconfig gtk3 enchant intltool ];
nativeBuildInputs = [ pkgconfig intltool ];
buildInputs = [ aspell gtk3 enchant ];
propagatedBuildInputs = [ enchant ];
meta = {
meta = with stdenv.lib; {
homepage = "http://gtkspell.sourceforge.net/";
description = "Word-processor-style highlighting GtkTextView widget";
license = stdenv.lib.licenses.gpl2Plus;
platforms = stdenv.lib.platforms.unix;
maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
license = licenses.gpl2Plus;
platforms = platforms.unix;
maintainers = with maintainers; [ fuuzetsu ];
};
}