2019-07-14 13:42:13 +01:00
|
|
|
{ fetchFromGitHub, gperf, openssl, readline, zlib, cmake, stdenv }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2020-10-28 16:12:04 +00:00
|
|
|
version = "1.6.9";
|
2019-07-14 13:42:13 +01:00
|
|
|
pname = "tdlib";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "tdlib";
|
|
|
|
repo = "td";
|
2020-10-28 16:12:04 +00:00
|
|
|
rev = "32f2338bd199dd06a1b4b5f1ad14f2d4f2868f01";
|
|
|
|
sha256 = "0wv03hlgzrsc04kcwnwz6dsmkdzvhb0i1wjs08gzivwxw06pkq4n";
|
2019-07-14 13:42:13 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ gperf openssl readline zlib ];
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Cross-platform library for building Telegram clients";
|
|
|
|
homepage = "https://core.telegram.org/tdlib/";
|
|
|
|
license = [ licenses.boost ];
|
2020-03-03 17:44:04 +00:00
|
|
|
platforms = platforms.unix;
|
2019-07-14 13:42:13 +01:00
|
|
|
maintainers = [ maintainers.vyorkin ];
|
|
|
|
};
|
|
|
|
}
|