Merge pull request #23826 from ndowens/gtkspell

gtkspell:3.0.8 -> 3.0.9
This commit is contained in:
Frederik Rietdijk 2017-03-14 13:36:42 +01:00 committed by GitHub
commit 8c99040a7a

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 ];
};
}