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

sqlite: 3.27.1 -> 3.27.2

(cherry picked from commit f2f90f4cefbb3f8e9bda1acfc5df529d33a3ca9d)

authored by

Will Dietz and committed by
Andreas Rammhold
e6d64679 e0d925ae

+4 -4
+2 -2
pkgs/development/libraries/sqlite/analyzer.nix
··· 6 6 7 7 stdenv.mkDerivation rec { 8 8 name = "sqlite-analyzer-${version}"; 9 - version = "3.27.1"; 9 + version = "3.27.2"; 10 10 11 11 src = assert version == sqlite.version; fetchurl { 12 12 url = "https://sqlite.org/2019/sqlite-src-${archiveVersion version}.zip"; 13 - sha256 = "11jrr14ld9cs9l5pz3z83xds1mhsqwgg47vwdx8rq6p667dc9z7h"; 13 + sha256 = "02nz1y22wyb8101d9y6wfdrvp855wvch67js12p5y3riya345g8m"; 14 14 }; 15 15 16 16 nativeBuildInputs = [ unzip ];
+2 -2
pkgs/development/libraries/sqlite/default.nix
··· 10 10 11 11 stdenv.mkDerivation rec { 12 12 name = "sqlite-${version}"; 13 - version = "3.27.1"; 13 + version = "3.27.2"; 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 = "1y7l225jm18fz6z3vyffrkl9k6qi964w1c5ri4giixizyy7jpaal"; 18 + sha256 = "0vpgwszs19pwks2b4dhqwa0n6q5sx6pn1s7rngyyrd98xa2rxhsh"; 19 19 }; 20 20 21 21 outputs = [ "bin" "dev" "out" ];