Merge pull request #105682 from SeTSeR/master

tdlib: 1.6.9 -> 1.7.0

authored by

Sandro and committed by
GitHub
779dfe12 0c4aeb53

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