nixpkgs/pkgs/development/libraries/libetpan/default.nix

32 lines
695 B
Nix
Raw Normal View History

2019-08-12 04:28:31 +02:00
{ stdenv, fetchFromGitHub
, autoconf
, automake
, libtool
, openssl
}:
2019-08-12 04:28:31 +02:00
stdenv.mkDerivation rec {
pname = "libetpan";
version = "1.9.3";
2019-08-12 04:28:31 +02:00
src = fetchFromGitHub {
owner = "dinhviethoa";
repo = "libetpan";
rev = version;
sha256 = "19g4qskg71jv7sxfxsdkjmrxk9mk5kf9b6fhw06g6wvm3205n95f";
};
2019-08-12 04:28:31 +02:00
nativeBuildInputs = [ libtool autoconf automake ];
buildInputs = [ openssl ];
configureScript = "./autogen.sh";
2014-12-22 05:37:10 +01:00
meta = with stdenv.lib; {
description = "An efficient, portable library for different kinds of mail access: IMAP, SMTP, POP, and NNTP";
homepage = http://www.etpan.org/libetpan.html;
license = licenses.bsd3;
platforms = platforms.linux;
};
}