nixpkgs/pkgs/development/libraries/libetpan/default.nix
Bryan Gardiner de0a388ccf Add claws-mail and libetpan.
Adds Nix expressions for claws-mail (http://www.claws-mail.org) and a
dependency that is not already in the tree, libetpan
(http://www.etpan.org/libetpan.html).

The Claws expression has flags for toggling the build of various plugins.
2014-10-06 18:07:43 -07:00

25 lines
687 B
Nix

{ autoconf, automake, fetchgit, libtool, stdenv, openssl }:
let version = "1.5"; in
stdenv.mkDerivation {
name = "libetpan-${version}";
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;
};
src = fetchgit {
url = "git://github.com/dinhviethoa/libetpan";
rev = "refs/tags/" + version;
sha256 = "bf9465121a0fb09418215ee3474a400ea5bc5ed05a6811a2978afe4905e140c9";
};
buildInputs = [ autoconf automake libtool openssl ];
configureScript = "./autogen.sh";
}