nixpkgs/pkgs/development/libraries/libetpan/default.nix
2016-06-03 17:17:08 +03:00

25 lines
675 B
Nix

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