2016-12-31 15:13:19 -08:00
|
|
|
{ stdenv, fetchurl, pkgconfig, glib, zlib, libgpgerror, gobjectIntrospection }:
|
2006-05-07 14:58:31 -07:00
|
|
|
|
2010-07-09 02:12:42 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2017-01-29 08:18:09 -08:00
|
|
|
name = "gmime-2.6.23";
|
2012-08-26 19:53:19 -07:00
|
|
|
|
2006-05-07 14:58:31 -07:00
|
|
|
src = fetchurl {
|
2013-04-18 00:34:02 -07:00
|
|
|
url = "mirror://gnome/sources/gmime/2.6/${name}.tar.xz";
|
2017-01-29 08:18:09 -08:00
|
|
|
sha256 = "0slzlzcr3h8jikpz5a5amqd0csqh2m40gdk910ws2hnaf5m6hjbi";
|
2010-07-09 02:12:42 -07:00
|
|
|
};
|
2012-08-26 19:53:19 -07:00
|
|
|
|
2016-08-28 17:30:01 -07:00
|
|
|
outputs = [ "out" "dev" ];
|
2012-08-26 19:53:19 -07:00
|
|
|
|
2016-12-31 15:13:19 -08:00
|
|
|
nativeBuildInputs = [ pkgconfig gobjectIntrospection ];
|
2013-04-18 00:34:02 -07:00
|
|
|
propagatedBuildInputs = [ glib zlib libgpgerror ];
|
2016-12-31 15:13:19 -08:00
|
|
|
configureFlags = [ "--enable-introspection=yes" ];
|
2010-07-09 02:12:42 -07:00
|
|
|
|
2013-06-25 09:42:56 -07:00
|
|
|
enableParallelBuilding = true;
|
2010-07-09 02:12:42 -07:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://spruce.sourceforge.net/gmime/;
|
|
|
|
description = "A C/C++ library for manipulating MIME messages";
|
2011-05-06 14:49:12 -07:00
|
|
|
maintainers = [ stdenv.lib.maintainers.chaoflow ];
|
2016-08-02 10:50:55 -07:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2006-05-07 14:58:31 -07:00
|
|
|
};
|
|
|
|
}
|