2018-12-02 11:41:15 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, glib, zlib, gnupg, gpgme, libidn2, libunistring, gobject-introspection }:
|
2017-08-31 16:01:08 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-11-27 17:31:02 +00:00
|
|
|
version = "3.2.3";
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "gmime";
|
2017-08-31 16:01:08 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "mirror://gnome/sources/gmime/3.2/${pname}-${version}.tar.xz";
|
2018-11-27 17:31:02 +00:00
|
|
|
sha256 = "04bk7rqs5slpvlvqf11i6s37s8b2xn6acls8smyl9asjnpp7a23a";
|
2017-08-31 16:01:08 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
|
2018-12-02 11:41:15 +00:00
|
|
|
buildInputs = [ gobject-introspection zlib gpgme libidn2 libunistring ];
|
2017-09-25 10:58:08 +01:00
|
|
|
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 ];
|
|
|
|
|
2018-10-30 15:54:54 +00:00
|
|
|
doCheck = true;
|
|
|
|
|
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;
|
2019-02-22 15:14:13 +00:00
|
|
|
maintainers = with maintainers; [ ];
|
2017-08-31 16:01:08 +01:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|