1 {lib, stdenv, fetchurl, gtk3, aspell, pkg-config, enchant, isocodes, intltool, gobject-introspection, vala}:
3 stdenv.mkDerivation rec {
7 outputs = [ "out" "dev" ];
10 url = "mirror://sourceforge/gtkspell/gtkspell3-${version}.tar.xz";
11 sha256 = "0cjp6xdcnzh6kka42w9g0w2ihqjlq8yl8hjm9wsfnixk6qwgch5h";
14 nativeBuildInputs = [ pkg-config intltool gobject-introspection vala ];
15 buildInputs = [ aspell gtk3 enchant isocodes ];
16 propagatedBuildInputs = [ enchant ];
19 "--enable-introspection"
24 homepage = "http://gtkspell.sourceforge.net/";
25 description = "Word-processor-style highlighting GtkTextView widget";
26 license = licenses.gpl2Plus;
27 platforms = platforms.unix;
28 maintainers = with maintainers; [ ];