Merge pull request #105682 from SeTSeR/master

tdlib: 1.6.9 -> 1.7.0
This commit is contained in:
Sandro 2020-12-02 19:32:16 +01:00 committed by GitHub
commit 779dfe1218
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,20 +1,16 @@
{ fetchFromGitHub, gperf, openssl, readline, zlib, cmake, stdenv }:
stdenv.mkDerivation rec {
version = "unstable-2020-10-25";
version = "1.7.0";
pname = "tdlib";
src = fetchFromGitHub {
owner = "tdlib";
repo = "td";
# At version 1.6.0, this line was `rev = "v${version}". Version 1.6.9 (here called `unstable-2020-10-25`) uses an
# explicit revision because 1.6.9 is not a tdlib GitHub release, and is therefore not hosted at
# `https://github.com/tdlib/td/releases/tag/v1.6.9`. Please return to the `rev = "v${version}"` style on the next
# version bump if you can, since that will allow `nixpkgs-update` to update the package automatically.
rev = "32f2338bd199dd06a1b4b5f1ad14f2d4f2868f01";
rev = "v${version}";
sha256 = "0wv03hlgzrsc04kcwnwz6dsmkdzvhb0i1wjs08gzivwxw06pkq4n";
sha256 = "sha256-sZzp9k7KDnqftcSGSgXkIy0siCksGPBmRckySU/J0TU=";
};
buildInputs = [ gperf openssl readline zlib ];