python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / gtkspell / 3.nix
blobd3a1a178856bc629cc533348dd6fb46598fbc920
1 {lib, stdenv, fetchurl, gtk3, aspell, pkg-config, enchant, isocodes, intltool, gobject-introspection, vala}:
3 stdenv.mkDerivation rec {
4   pname = "gtkspell";
5   version = "3.0.10";
7   outputs = [ "out" "dev" ];
9   src = fetchurl {
10     url = "mirror://sourceforge/gtkspell/gtkspell3-${version}.tar.xz";
11     sha256 = "0cjp6xdcnzh6kka42w9g0w2ihqjlq8yl8hjm9wsfnixk6qwgch5h";
12   };
14   nativeBuildInputs = [ pkg-config intltool gobject-introspection vala ];
15   buildInputs = [ aspell gtk3 enchant isocodes ];
16   propagatedBuildInputs = [ enchant ];
18   configureFlags = [
19     "--enable-introspection"
20     "--enable-vala"
21   ];
23   meta = with lib; {
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; [ ];
29   };