Merge: sqlite, sqlite-analyzer: 3.50.1 -> 3.50.2 (#420837)

authored by Maximilian Bosch and committed by GitHub 2d01f41e 30a3ecea

+5 -5
+3 -3
pkgs/development/libraries/sqlite/default.nix
··· 27 27 28 28 stdenv.mkDerivation rec { 29 29 pname = "sqlite${lib.optionalString interactive "-interactive"}"; 30 - version = "3.50.1"; 30 + version = "3.50.2"; 31 31 32 32 # nixpkgs-update: no auto update 33 33 # NB! Make sure to update ./tools.nix src (in the same directory). 34 34 src = fetchurl { 35 35 url = "https://sqlite.org/2025/sqlite-autoconf-${archiveVersion version}.tar.gz"; 36 - hash = "sha256-AKZRFNaXz6qP4GMCgddv0bd6/Nlc1eQOxqAsu62/6nE="; 36 + hash = "sha256-hKYW/9MXOORZC2W6uzqeHvk3DzY4422yIO4Oc/itIVY="; 37 37 }; 38 38 docsrc = fetchurl { 39 39 url = "https://sqlite.org/2025/sqlite-doc-${archiveVersion version}.zip"; 40 - hash = "sha256-ZiIF9jOC5X0Qceqr08eQjdchFKggqOvPGg1xqdazgrQ="; 40 + hash = "sha256-n4uitTo6oskWbUagLZEbhdO4sLhAxJHTIdX8YhUONBk="; 41 41 }; 42 42 43 43 outputs = [
+2 -2
pkgs/development/libraries/sqlite/tools.nix
··· 19 19 }: 20 20 stdenv.mkDerivation rec { 21 21 inherit pname; 22 - version = "3.50.1"; 22 + version = "3.50.2"; 23 23 24 24 # nixpkgs-update: no auto update 25 25 src = 26 26 assert version == sqlite.version; 27 27 fetchurl { 28 28 url = "https://sqlite.org/2025/sqlite-src-${archiveVersion version}.zip"; 29 - hash = "sha256-kJBZd3PGCknK67PBrFfbYm+sTZfLUYkIFai1KaTZw9w="; 29 + hash = "sha256-CR7uw64sy5Gqwh0OmkpYlE+yyxEvpnv/w+CMLsothcg="; 30 30 }; 31 31 32 32 nativeBuildInputs = [ unzip ];