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:
parent
6da8b0d49d
commit
cf9e1a03f7
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchurl, pkgconfig, glib, zlib, libgpgerror }:
|
{ stdenv, fetchurl, pkgconfig, glib, zlib, libgpgerror, gobjectIntrospection }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "gmime-2.6.20";
|
name = "gmime-2.6.20";
|
||||||
@ -10,8 +10,9 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
outputs = [ "out" "dev" ];
|
outputs = [ "out" "dev" ];
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkgconfig gobjectIntrospection ];
|
||||||
propagatedBuildInputs = [ glib zlib libgpgerror ];
|
propagatedBuildInputs = [ glib zlib libgpgerror ];
|
||||||
|
configureFlags = [ "--enable-introspection=yes" ];
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user