nixpkgs/pkgs/development/libraries/gtkspell/3.nix

31 lines
892 B
Nix
Raw Normal View History

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