76999cc40e
This makes the command ‘nix-env -qa -f. --arg config '{skipAliases = true;}'’ work in Nixpkgs. Misc... - qtikz: use libsForQt5.callPackage This ensures we get the right poppler. - rewrites: docbook5_xsl -> docbook_xsl_ns docbook_xml_xslt -> docbook_xsl diffpdf: fixup
60 lines
1.5 KiB
Nix
60 lines
1.5 KiB
Nix
{ stdenv, lib, fetchFromGitHub, cmake, libetpan, icu, cyrus_sasl, libctemplate
|
|
, libuchardet, pkgconfig, glib, html-tidy, libxml2, libuuid, openssl
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "mailcore2-${version}";
|
|
|
|
version = "0.6.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "MailCore";
|
|
repo = "mailcore2";
|
|
rev = version;
|
|
sha256 = "1d0wmnkk9vnjqc28i79z3fwaaycdbprfspagik4mzdkgval5r5pm";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [
|
|
libetpan cmake icu cyrus_sasl libctemplate libuchardet glib
|
|
html-tidy libxml2 libuuid openssl
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace CMakeLists.txt \
|
|
--replace " icule iculx" "" \
|
|
--replace "tidy/tidy.h" "tidy.h" \
|
|
--replace "/usr/include/tidy" "${html-tidy}/include" \
|
|
--replace "/usr/include/libxml2" "${libxml2.dev}/include/libxml2"
|
|
substituteInPlace src/core/basetypes/MCHTMLCleaner.cpp \
|
|
--replace buffio.h tidybuffio.h
|
|
'';
|
|
|
|
cmakeFlags = [
|
|
"-DBUILD_SHARED_LIBS=ON"
|
|
];
|
|
|
|
installPhase = ''
|
|
mkdir $out
|
|
cp -r src/include $out
|
|
|
|
mkdir $out/lib
|
|
cp src/libMailCore.so $out/lib
|
|
'';
|
|
|
|
doCheck = true;
|
|
checkPhase = ''
|
|
(
|
|
cd unittest
|
|
LD_LIBRARY_PATH="$(cd ../src; pwd)" TZ=PST8PDT ./unittestcpp ../../unittest/data
|
|
)
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "A simple and asynchronous API to work with e-mail protocols IMAP, POP and SMTP";
|
|
homepage = http://libmailcore.com;
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ cstrahan ];
|
|
};
|
|
}
|