summary refs log tree commit diff
diff options
context:
space:
mode:
authorzowoq <59103226+zowoq@users.noreply.github.com>2023-02-22 09:56:10 +1000
committerzowoq <59103226+zowoq@users.noreply.github.com>2023-02-27 16:14:54 +1000
commit95806059e1087dbbaa09e3001301f923d1393e9c (patch)
tree9a065c6d7b9189b485c3b479726fcfabb979577c
parent288c9d7892fb45740ec4c34e24dd9767daa12f9d (diff)
downloadnixpkgs-95806059e1087dbbaa09e3001301f923d1393e9c.tar
nixpkgs-95806059e1087dbbaa09e3001301f923d1393e9c.tar.gz
nixpkgs-95806059e1087dbbaa09e3001301f923d1393e9c.tar.bz2
nixpkgs-95806059e1087dbbaa09e3001301f923d1393e9c.tar.lz
nixpkgs-95806059e1087dbbaa09e3001301f923d1393e9c.tar.xz
nixpkgs-95806059e1087dbbaa09e3001301f923d1393e9c.tar.zst
nixpkgs-95806059e1087dbbaa09e3001301f923d1393e9c.zip
sqlite: 3.40.1 -> 3.41.0
Changelog: https://www.sqlite.org/releaselog/3_41_0.html
-rw-r--r--pkgs/development/libraries/sqlite/default.nix7
-rw-r--r--pkgs/development/libraries/sqlite/tools.nix6
2 files changed, 7 insertions, 6 deletions
diff --git a/pkgs/development/libraries/sqlite/default.nix b/pkgs/development/libraries/sqlite/default.nix
index 91f694649b0..981a0c9cebb 100644
--- a/pkgs/development/libraries/sqlite/default.nix
+++ b/pkgs/development/libraries/sqlite/default.nix
@@ -15,13 +15,13 @@ in
 
 stdenv.mkDerivation rec {
   pname = "sqlite${lib.optionalString interactive "-interactive"}";
-  version = "3.40.1";
+  version = "3.41.0";
 
   # nixpkgs-update: no auto update
   # NB! Make sure to update ./tools.nix src (in the same directory).
   src = fetchurl {
-    url = "https://sqlite.org/2022/sqlite-autoconf-${archiveVersion version}.tar.gz";
-    sha256 = "sha256-LF3qIH+lCNdlrx72ILY33LBlcq+m8B8IFb1bv4ZLM9k=";
+    url = "https://sqlite.org/2023/sqlite-autoconf-${archiveVersion version}.tar.gz";
+    hash = "sha256-Sfd6xT/Zql1zlfJJnLgWQQ5WIZhKEhuFjMygUxCwXHA=";
   };
 
   outputs = [ "bin" "dev" "out" ];
@@ -93,6 +93,7 @@ stdenv.mkDerivation rec {
   };
 
   meta = with lib; {
+    changelog = "https://www.sqlite.org/releaselog/${lib.replaceStrings [ "." ] [ "_" ] version}.html";
     description = "A self-contained, serverless, zero-configuration, transactional SQL database engine";
     downloadPage = "https://sqlite.org/download.html";
     homepage = "https://www.sqlite.org/";
diff --git a/pkgs/development/libraries/sqlite/tools.nix b/pkgs/development/libraries/sqlite/tools.nix
index bb0a1a7d739..50c246464bd 100644
--- a/pkgs/development/libraries/sqlite/tools.nix
+++ b/pkgs/development/libraries/sqlite/tools.nix
@@ -4,12 +4,12 @@ let
   archiveVersion = import ./archive-version.nix lib;
   mkTool = { pname, makeTarget, description, homepage, mainProgram }: stdenv.mkDerivation rec {
     inherit pname;
-    version = "3.40.1";
+    version = "3.41.0";
 
     # nixpkgs-update: no auto update
     src = assert version == sqlite.version; fetchurl {
-      url = "https://sqlite.org/2022/sqlite-src-${archiveVersion version}.zip";
-      sha256 = "sha256-UGQSaqUNsgw1V4thK1bDEpQlwFBu1NFhDvpKDwG9+NA=";
+      url = "https://sqlite.org/2023/sqlite-src-${archiveVersion version}.zip";
+      hash = "sha256-ZKdjijXoa5kfDBWujigwBjtpSygGi491lTWOMgWp62Y=";
     };
 
     nativeBuildInputs = [ unzip ];