13 # this will not work on non-nixos systems
14 sendmailPath ? "/run/wrappers/bin/sendmail",
17 stdenv.mkDerivation rec {
19 # XXX: using unstable rev for now to comply with the removal of
20 # deprecated symbols in the latest release of gsasl
21 version = "unstable-2022-03-26";
22 src = fetchFromGitHub {
25 rev = "fc69321d5304c73be685c890f3b30528aadcfeaf";
26 sha256 = "sha256-DUcGQcT7hp5Rs2Z5C8wo+3BYwWqED0KrF3h3vgLiiow=";
43 "-DVMIME_SENDMAIL_PATH=${sendmailPath}"
47 homepage = "https://www.vmime.org/";
48 description = "Free mail library for C++";
49 license = lib.licenses.gpl3;
51 platforms = with lib.platforms; linux;