tdlib: init at 1.4.0
This commit is contained in:
parent
93bd6a764f
commit
3f533508d8
24
pkgs/development/libraries/tdlib/default.nix
Normal file
24
pkgs/development/libraries/tdlib/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user