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

30 lines
702 B
Nix
Raw Normal View History

{ stdenv, lib, fetchFromGitHub
, autoconf, automake, libtool, openssl, pkg-config
2019-08-12 03:28:31 +01:00
}:
2019-08-12 03:28:31 +01:00
stdenv.mkDerivation rec {
pname = "libetpan";
version = "1.9.4";
2019-08-12 03:28:31 +01:00
src = fetchFromGitHub {
owner = "dinhviethoa";
repo = "libetpan";
rev = version;
sha256 = "0g7an003simfdn7ihg9yjv7hl2czsmjsndjrp39i7cad8icixscn";
};
nativeBuildInputs = [ autoconf automake libtool pkg-config ];
2019-08-12 03:28:31 +01:00
buildInputs = [ openssl ];
configureScript = "./autogen.sh";
2014-12-22 04:37:10 +00:00
meta = with lib; {
description = "Mail Framework for the C Language";
homepage = "http://www.etpan.org/libetpan.html";
2014-12-22 04:37:10 +00:00
license = licenses.bsd3;
maintainers = with maintainers; [ oxzi ];
2014-12-22 04:37:10 +00:00
platforms = platforms.linux;
};
}