Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

sqlite: 3.27.2 -> 3.28.0

Changelog: https://www.sqlite.org/releaselog/3_28_0.html

Security: includes fixes for CVE-2019-9936 and CVE-2019-9937
(cherry picked from commit fba13b5253eddca1907e38db3b0ed1bd205a2bfa)

authored by

c0bw3b and committed by
Andreas Rammhold
a71c6bca e6d64679

+7 -7
+3 -3
pkgs/development/libraries/sqlite/analyzer.nix
··· 6 6 7 7 stdenv.mkDerivation rec { 8 8 name = "sqlite-analyzer-${version}"; 9 - version = "3.27.2"; 9 + version = "3.28.0"; 10 10 11 11 src = assert version == sqlite.version; fetchurl { 12 12 url = "https://sqlite.org/2019/sqlite-src-${archiveVersion version}.zip"; 13 - sha256 = "02nz1y22wyb8101d9y6wfdrvp855wvch67js12p5y3riya345g8m"; 13 + sha256 = "15v57b113bpgcshfsx5jw93szar3da94rr03i053xhl15la7jllh"; 14 14 }; 15 15 16 16 nativeBuildInputs = [ unzip ]; ··· 23 23 meta = with stdenv.lib; { 24 24 description = "A tool that shows statistics about SQLite databases"; 25 25 downloadPage = http://sqlite.org/download.html; 26 - homepage = http://www.sqlite.org; 26 + homepage = https://www.sqlite.org; 27 27 license = licenses.publicDomain; 28 28 maintainers = with maintainers; [ pesterhazy ]; 29 29 platforms = platforms.unix;
+4 -4
pkgs/development/libraries/sqlite/default.nix
··· 10 10 11 11 stdenv.mkDerivation rec { 12 12 name = "sqlite-${version}"; 13 - version = "3.27.2"; 13 + version = "3.28.0"; 14 14 15 15 # NB! Make sure to update analyzer.nix src (in the same directory). 16 16 src = fetchurl { 17 17 url = "https://sqlite.org/2019/sqlite-autoconf-${archiveVersion version}.tar.gz"; 18 - sha256 = "0vpgwszs19pwks2b4dhqwa0n6q5sx6pn1s7rngyyrd98xa2rxhsh"; 18 + sha256 = "1hxpi45crbqp6lacl7z611lna02k956m9bsy2bjzrbb2y23546yn"; 19 19 }; 20 20 21 21 outputs = [ "bin" "dev" "out" ]; ··· 75 75 76 76 meta = { 77 77 description = "A self-contained, serverless, zero-configuration, transactional SQL database engine"; 78 - downloadPage = http://sqlite.org/download.html; 79 - homepage = http://www.sqlite.org/; 78 + downloadPage = https://sqlite.org/download.html; 79 + homepage = https://www.sqlite.org/; 80 80 license = licenses.publicDomain; 81 81 maintainers = with maintainers; [ eelco np ]; 82 82 platforms = platforms.unix ++ platforms.windows;