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-09-15 21:48:46 +01:00
|
|
|
version = "2.6.23";
|
|
|
|
name = "gmime-${version}";
|
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
|
|
|
|
2017-08-31 16:01:08 +01:00
|
|
|
meta = with stdenv.lib; {
|
2017-08-31 15:37:00 +01:00
|
|
|
homepage = https://github.com/jstedfast/gmime/;
|
|
|
|
description = "A C/C++ library for creating, editing and parsing MIME messages and structures";
|
2017-08-31 16:01:08 +01:00
|
|
|
license = licenses.lgpl21Plus;
|
|
|
|
maintainers = with maintainers; [ chaoflow ];
|
|
|
|
platforms = platforms.unix;
|
2006-05-07 22:58:31 +01:00
|
|
|
};
|
|
|
|
}
|