2018-12-02 12:41:15 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, glib, zlib, gnupg, libgpgerror, gobject-introspection }:
|
2006-05-07 23:58:31 +02:00
|
|
|
|
2010-07-09 11:12:42 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2017-09-15 22:48:46 +02:00
|
|
|
version = "2.6.23";
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "gmime";
|
2012-08-27 04:53:19 +02:00
|
|
|
|
2006-05-07 23:58:31 +02:00
|
|
|
src = fetchurl {
|
2019-08-15 14:41:18 +02:00
|
|
|
url = "mirror://gnome/sources/gmime/2.6/${pname}-${version}.tar.xz";
|
2017-01-29 17:18:09 +01:00
|
|
|
sha256 = "0slzlzcr3h8jikpz5a5amqd0csqh2m40gdk910ws2hnaf5m6hjbi";
|
2010-07-09 11:12:42 +02:00
|
|
|
};
|
2012-08-27 04:53:19 +02:00
|
|
|
|
2016-08-29 02:30:01 +02:00
|
|
|
outputs = [ "out" "dev" ];
|
2012-08-27 04:53:19 +02:00
|
|
|
|
2018-12-02 12:41:15 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig gobject-introspection ];
|
2013-04-18 09:34:02 +02:00
|
|
|
propagatedBuildInputs = [ glib zlib libgpgerror ];
|
2017-01-01 00:13:19 +01:00
|
|
|
configureFlags = [ "--enable-introspection=yes" ];
|
2010-07-09 11:12:42 +02:00
|
|
|
|
2018-08-08 20:32:08 +02:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace tests/testsuite.c \
|
|
|
|
--replace /bin/rm rm \
|
|
|
|
--replace /bin/mkdir mkdir
|
|
|
|
|
|
|
|
substituteInPlace tests/test-pkcs7.c \
|
|
|
|
--replace /bin/mkdir mkdir
|
|
|
|
'';
|
|
|
|
|
|
|
|
checkInputs = [ gnupg ];
|
|
|
|
|
2013-06-25 18:42:56 +02:00
|
|
|
enableParallelBuilding = true;
|
2010-07-09 11:12:42 +02:00
|
|
|
|
2017-08-31 17:01:08 +02:00
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/jstedfast/gmime/";
|
2017-08-31 16:37:00 +02:00
|
|
|
description = "A C/C++ library for creating, editing and parsing MIME messages and structures";
|
2017-08-31 17:01:08 +02:00
|
|
|
license = licenses.lgpl21Plus;
|
2019-02-22 16:14:13 +01:00
|
|
|
maintainers = with maintainers; [ ];
|
2017-08-31 17:01:08 +02:00
|
|
|
platforms = platforms.unix;
|
2006-05-07 23:58:31 +02:00
|
|
|
};
|
|
|
|
}
|