libetpan: 1.9.3 -> 1.9.4

Also added myself as a maintainer because there are none.
This commit is contained in:
Alvar Penning 2020-10-01 23:31:31 +02:00
parent 1dc1d962fc
commit a38b1c698b

View file

@ -1,31 +1,29 @@
{ stdenv, fetchFromGitHub { stdenv, lib, fetchFromGitHub
, autoconf , autoconf, automake, libtool, openssl, pkg-config
, automake
, libtool
, openssl
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "libetpan"; pname = "libetpan";
version = "1.9.3"; version = "1.9.4";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "dinhviethoa"; owner = "dinhviethoa";
repo = "libetpan"; repo = "libetpan";
rev = version; rev = version;
sha256 = "19g4qskg71jv7sxfxsdkjmrxk9mk5kf9b6fhw06g6wvm3205n95f"; sha256 = "0g7an003simfdn7ihg9yjv7hl2czsmjsndjrp39i7cad8icixscn";
}; };
nativeBuildInputs = [ libtool autoconf automake ]; nativeBuildInputs = [ autoconf automake libtool pkg-config ];
buildInputs = [ openssl ]; buildInputs = [ openssl ];
configureScript = "./autogen.sh"; configureScript = "./autogen.sh";
meta = with stdenv.lib; { meta = with lib; {
description = "An efficient, portable library for different kinds of mail access: IMAP, SMTP, POP, and NNTP"; description = "Mail Framework for the C Language";
homepage = "http://www.etpan.org/libetpan.html"; homepage = "http://www.etpan.org/libetpan.html";
license = licenses.bsd3; license = licenses.bsd3;
maintainers = with maintainers; [ oxzi ];
platforms = platforms.linux; platforms = platforms.linux;
}; };
} }