gtkspell3: add gir

This commit is contained in:
Jan Tojnar 2018-03-21 22:52:47 +01:00
parent bdfbe578da
commit 79092439ca
No known key found for this signature in database
GPG Key ID: 7FAB2A15F7A607A4

View File

@ -1,18 +1,22 @@
{stdenv, fetchurl, gtk3, aspell, pkgconfig, enchant, isocodes, intltool}:
{stdenv, fetchurl, gtk3, aspell, pkgconfig, enchant, isocodes, intltool, gobjectIntrospection}:
stdenv.mkDerivation rec {
name = "gtkspell-${version}";
version = "3.0.9";
outputs = [ "out" "dev" ];
src = fetchurl {
url = "mirror://sourceforge/gtkspell/gtkspell3-${version}.tar.xz";
sha256 = "09jdicmpipmj4v84gnkqwbmj4lh8v0i6pn967rb9jx4zg2ia9x54";
};
nativeBuildInputs = [ pkgconfig intltool ];
nativeBuildInputs = [ pkgconfig intltool gobjectIntrospection ];
buildInputs = [ aspell gtk3 enchant isocodes ];
propagatedBuildInputs = [ enchant ];
configureFlags = [ "--enable-introspection" ];
meta = with stdenv.lib; {
homepage = http://gtkspell.sourceforge.net/;
description = "Word-processor-style highlighting GtkTextView widget";