sqlite: 3.40.1 -> 3.41.0

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

zowoq 95806059 288c9d78

+7 -6
+4 -3
pkgs/development/libraries/sqlite/default.nix
··· 15 16 stdenv.mkDerivation rec { 17 pname = "sqlite${lib.optionalString interactive "-interactive"}"; 18 - version = "3.40.1"; 19 20 # nixpkgs-update: no auto update 21 # NB! Make sure to update ./tools.nix src (in the same directory). 22 src = fetchurl { 23 - url = "https://sqlite.org/2022/sqlite-autoconf-${archiveVersion version}.tar.gz"; 24 - sha256 = "sha256-LF3qIH+lCNdlrx72ILY33LBlcq+m8B8IFb1bv4ZLM9k="; 25 }; 26 27 outputs = [ "bin" "dev" "out" ]; ··· 93 }; 94 95 meta = with lib; { 96 description = "A self-contained, serverless, zero-configuration, transactional SQL database engine"; 97 downloadPage = "https://sqlite.org/download.html"; 98 homepage = "https://www.sqlite.org/";
··· 15 16 stdenv.mkDerivation rec { 17 pname = "sqlite${lib.optionalString interactive "-interactive"}"; 18 + version = "3.41.0"; 19 20 # nixpkgs-update: no auto update 21 # NB! Make sure to update ./tools.nix src (in the same directory). 22 src = fetchurl { 23 + url = "https://sqlite.org/2023/sqlite-autoconf-${archiveVersion version}.tar.gz"; 24 + hash = "sha256-Sfd6xT/Zql1zlfJJnLgWQQ5WIZhKEhuFjMygUxCwXHA="; 25 }; 26 27 outputs = [ "bin" "dev" "out" ]; ··· 93 }; 94 95 meta = with lib; { 96 + changelog = "https://www.sqlite.org/releaselog/${lib.replaceStrings [ "." ] [ "_" ] version}.html"; 97 description = "A self-contained, serverless, zero-configuration, transactional SQL database engine"; 98 downloadPage = "https://sqlite.org/download.html"; 99 homepage = "https://www.sqlite.org/";
+3 -3
pkgs/development/libraries/sqlite/tools.nix
··· 4 archiveVersion = import ./archive-version.nix lib; 5 mkTool = { pname, makeTarget, description, homepage, mainProgram }: stdenv.mkDerivation rec { 6 inherit pname; 7 - version = "3.40.1"; 8 9 # nixpkgs-update: no auto update 10 src = assert version == sqlite.version; fetchurl { 11 - url = "https://sqlite.org/2022/sqlite-src-${archiveVersion version}.zip"; 12 - sha256 = "sha256-UGQSaqUNsgw1V4thK1bDEpQlwFBu1NFhDvpKDwG9+NA="; 13 }; 14 15 nativeBuildInputs = [ unzip ];
··· 4 archiveVersion = import ./archive-version.nix lib; 5 mkTool = { pname, makeTarget, description, homepage, mainProgram }: stdenv.mkDerivation rec { 6 inherit pname; 7 + version = "3.41.0"; 8 9 # nixpkgs-update: no auto update 10 src = assert version == sqlite.version; fetchurl { 11 + url = "https://sqlite.org/2023/sqlite-src-${archiveVersion version}.zip"; 12 + hash = "sha256-ZKdjijXoa5kfDBWujigwBjtpSygGi491lTWOMgWp62Y="; 13 }; 14 15 nativeBuildInputs = [ unzip ];