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