2017-08-26 10:12:16 +01:00
|
|
|
{stdenv, fetchFromGitHub
|
|
|
|
, gsasl, gnutls, pkgconfig, cmake, zlib, libtasn1, libgcrypt, gtk3
|
|
|
|
# this will not work on non-nixos systems
|
|
|
|
, sendmailPath ? "/run/wrappers/bin/sendmail"
|
|
|
|
}:
|
2011-02-06 15:27:14 +00:00
|
|
|
|
2017-08-26 10:12:16 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "vmime";
|
2017-08-26 10:12:16 +01:00
|
|
|
version = "0.9.2";
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "kisli";
|
|
|
|
repo = "vmime";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "1304n50ny2av8bagjpgz55ag0nd7m313akm9bb73abjn6h5nzacv";
|
2011-02-06 15:27:14 +00:00
|
|
|
};
|
|
|
|
|
2017-08-26 10:12:16 +01:00
|
|
|
buildInputs = [ gsasl gnutls zlib libtasn1 libgcrypt gtk3 ];
|
|
|
|
nativeBuildInputs = [ pkgconfig cmake ];
|
|
|
|
|
|
|
|
cmakeFlags = [
|
|
|
|
"-DVMIME_SENDMAIL_PATH=${sendmailPath}"
|
|
|
|
];
|
2011-02-06 15:27:14 +00:00
|
|
|
|
|
|
|
meta = {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.vmime.org/";
|
2011-02-06 15:27:14 +00:00
|
|
|
description = "Free mail library for C++";
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.gpl3;
|
2011-02-06 15:27:14 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [viric];
|
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
|
|
};
|
|
|
|
}
|