31 lines
875 B
Nix
Raw Normal View History

{stdenv, fetchurl, gtk3, aspell, pkgconfig, enchant, isocodes, intltool, gobject-introspection, vala}:
2014-01-09 14:21:36 +01:00
stdenv.mkDerivation rec {
pname = "gtkspell";
2018-11-17 23:32:45 +01:00
version = "3.0.10";
2014-09-21 18:30:15 +01:00
2018-03-21 22:52:47 +01:00
outputs = [ "out" "dev" ];
2014-01-09 14:21:36 +01:00
src = fetchurl {
2017-03-12 20:38:46 -05:00
url = "mirror://sourceforge/gtkspell/gtkspell3-${version}.tar.xz";
2018-11-17 23:32:45 +01:00
sha256 = "0cjp6xdcnzh6kka42w9g0w2ihqjlq8yl8hjm9wsfnixk6qwgch5h";
2014-01-09 14:21:36 +01:00
};
2014-09-21 18:30:15 +01:00
nativeBuildInputs = [ pkgconfig intltool gobject-introspection vala ];
buildInputs = [ aspell gtk3 enchant isocodes ];
propagatedBuildInputs = [ enchant ];
2014-01-09 14:21:36 +01:00
2018-07-06 19:05:42 -04:00
configureFlags = [
"--enable-introspection"
"--enable-vala"
];
2018-03-21 22:52:47 +01:00
2017-03-12 20:38:46 -05:00
meta = with stdenv.lib; {
homepage = "http://gtkspell.sourceforge.net/";
2014-09-21 18:30:15 +01:00
description = "Word-processor-style highlighting GtkTextView widget";
2017-03-12 20:38:46 -05:00
license = licenses.gpl2Plus;
platforms = platforms.unix;
maintainers = with maintainers; [ ];
2014-01-09 14:21:36 +01:00
};
}