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