2018-08-08 19:32:23 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, glib, zlib, gnupg, gpgme, libidn, gobjectIntrospection }:
|
2017-08-31 16:01:08 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-04-23 08:19:35 +01:00
|
|
|
version = "3.2.0";
|
2017-09-15 21:48:46 +01:00
|
|
|
name = "gmime-${version}";
|
2017-08-31 16:01:08 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-04-23 08:19:35 +01:00
|
|
|
url = "mirror://gnome/sources/gmime/3.2/${name}.tar.xz";
|
|
|
|
sha256 = "1q6palbpf6lh6bvy9ly26q5apl5k0z0r4mvl6zzqh90rz4rn1v3m";
|
2017-08-31 16:01:08 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
|
2017-09-25 10:58:08 +01:00
|
|
|
buildInputs = [ gobjectIntrospection zlib gpgme libidn ];
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
propagatedBuildInputs = [ glib ];
|
2017-08-31 16:01:08 +01:00
|
|
|
configureFlags = [ "--enable-introspection=yes" ];
|
|
|
|
|
2018-08-08 19:32:23 +01:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace tests/testsuite.c \
|
|
|
|
--replace /bin/rm rm
|
|
|
|
'';
|
|
|
|
|
|
|
|
checkInputs = [ gnupg ];
|
|
|
|
|
2017-08-31 16:01:08 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://github.com/jstedfast/gmime/;
|
|
|
|
description = "A C/C++ library for creating, editing and parsing MIME messages and structures";
|
|
|
|
license = licenses.lgpl21Plus;
|
|
|
|
maintainers = with maintainers; [ chaoflow ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|