mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
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 {
|
||||
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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user