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