add introspection to gmime

This was necessary for astroid to work with gmime, and I thought it
would be generally useful.
This commit is contained in:
Brandon Dimcheff
2016-12-31 18:13:19 -05:00
committed by Jörg Thalheim
parent 6da8b0d49d
commit cf9e1a03f7

View File

@@ -1,4 +1,4 @@
{ stdenv, fetchurl, pkgconfig, glib, zlib, libgpgerror }:
{ stdenv, fetchurl, pkgconfig, glib, zlib, libgpgerror, gobjectIntrospection }:
stdenv.mkDerivation rec {
name = "gmime-2.6.20";
@@ -10,8 +10,9 @@ stdenv.mkDerivation rec {
outputs = [ "out" "dev" ];
nativeBuildInputs = [ pkgconfig ];
nativeBuildInputs = [ pkgconfig gobjectIntrospection ];
propagatedBuildInputs = [ glib zlib libgpgerror ];
configureFlags = [ "--enable-introspection=yes" ];
enableParallelBuilding = true;