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

31 lines
875 B
Nix
Raw Normal View History

{lib, stdenv, fetchurl, gtk3, aspell, pkg-config, enchant, isocodes, intltool, gobject-introspection, vala}:
2014-01-09 13:21:36 +00:00
stdenv.mkDerivation rec {
pname = "gtkspell";
2018-11-17 22:32:45 +00:00
version = "3.0.10";
2014-09-21 17:30:15 +00: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 17:30:15 +00:00
nativeBuildInputs = [ pkg-config intltool gobject-introspection vala ];
buildInputs = [ aspell gtk3 enchant isocodes ];
propagatedBuildInputs = [ enchant ];
2014-01-09 13:21:36 +00:00
2018-07-06 23:05:42 +00:00
configureFlags = [
"--enable-introspection"
"--enable-vala"
];
2018-03-21 21:52:47 +00:00
meta = with lib; {
homepage = "http://gtkspell.sourceforge.net/";
2014-09-21 17:30:15 +00:00
description = "Word-processor-style highlighting GtkTextView widget";
2017-03-13 01:38:46 +00:00
license = licenses.gpl2Plus;
platforms = platforms.unix;
maintainers = with maintainers; [ ];
2014-01-09 13:21:36 +00:00
};
}