tdlib: init at 1.4.0

This commit is contained in:
Vasiliy Yorkin 2019-07-14 15:42:13 +03:00
parent 93bd6a764f
commit 3f533508d8
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ fetchFromGitHub, gperf, openssl, readline, zlib, cmake, stdenv }:
stdenv.mkDerivation rec {
version = "1.4.0";
pname = "tdlib";
src = fetchFromGitHub {
owner = "tdlib";
repo = "td";
rev = "v${version}";
sha256 = "1ijyn14rjb87rqm39hg7md8ab33yiy8cgzw3p0m37scn58gabpp7";
};
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 ];
platforms = platforms.linux;
maintainers = [ maintainers.vyorkin ];
};
}

View file

@ -13441,6 +13441,8 @@ in
tdb = callPackage ../development/libraries/tdb {};
tdlib = callPackage ../development/libraries/tdlib { };
tecla = callPackage ../development/libraries/tecla { };
tectonic = callPackage ../tools/typesetting/tectonic {