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

25 lines
675 B
Nix
Raw Normal View History

{ autoconf, automake, fetchgit, libtool, stdenv, openssl }:
2018-03-08 04:41:33 +00:00
let version = "1.8"; in
stdenv.mkDerivation {
name = "libetpan-${version}";
src = fetchgit {
url = "git://github.com/dinhviethoa/libetpan";
rev = "refs/tags/" + version;
2018-03-08 04:41:33 +00:00
sha256 = "09xqy1n18qn63x7idfrpwm59lfkvb1p5vxkyksywvy4f6mn4pyxk";
};
buildInputs = [ autoconf automake libtool openssl ];
configureScript = "./autogen.sh";
2014-12-22 04:37:10 +00: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;
};
}