summary refs log tree commit diff
path: root/pkgs/development/libraries/sqlite
diff options
context:
space:
mode:
authorzowoq <59103226+zowoq@users.noreply.github.com>2022-03-16 17:55:49 +1000
committerzowoq <59103226+zowoq@users.noreply.github.com>2022-03-16 22:00:46 +1000
commitac896239be7091aaa243891aa150042c42b5ffc2 (patch)
tree535497857a309b49c2c733c116635ca3159f3627 /pkgs/development/libraries/sqlite
parentf7ca7442d2d4fd111efa2ddf3c2d7864a8653b14 (diff)
downloadnixpkgs-ac896239be7091aaa243891aa150042c42b5ffc2.tar
nixpkgs-ac896239be7091aaa243891aa150042c42b5ffc2.tar.gz
nixpkgs-ac896239be7091aaa243891aa150042c42b5ffc2.tar.bz2
nixpkgs-ac896239be7091aaa243891aa150042c42b5ffc2.tar.lz
nixpkgs-ac896239be7091aaa243891aa150042c42b5ffc2.tar.xz
nixpkgs-ac896239be7091aaa243891aa150042c42b5ffc2.tar.zst
nixpkgs-ac896239be7091aaa243891aa150042c42b5ffc2.zip
sqlite: 3.38.0 -> 3.38.1
https://www.sqlite.org/releaselog/3_38_1.html
Diffstat (limited to 'pkgs/development/libraries/sqlite')
-rw-r--r--pkgs/development/libraries/sqlite/default.nix4
-rw-r--r--pkgs/development/libraries/sqlite/tools.nix4
2 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/libraries/sqlite/default.nix b/pkgs/development/libraries/sqlite/default.nix
index 604e3a31dde..4112d5af7c4 100644
--- a/pkgs/development/libraries/sqlite/default.nix
+++ b/pkgs/development/libraries/sqlite/default.nix
@@ -11,13 +11,13 @@ in
 
 stdenv.mkDerivation rec {
   pname = "sqlite${optionalString interactive "-interactive"}";
-  version = "3.38.0";
+  version = "3.38.1";
 
   # 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-HHbiXcY9nzk14PQGrsUgoz7nfPVOpRR9/+H66Dae/2g=";
+    sha256 = "sha256-jjqM65eU2Wg5lZDS3fnVwESpfdg9OLlhM2SiReyKL8Q=";
   };
 
   outputs = [ "bin" "dev" "out" ];
diff --git a/pkgs/development/libraries/sqlite/tools.nix b/pkgs/development/libraries/sqlite/tools.nix
index 1a5d709016d..6b07c762881 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 }: stdenv.mkDerivation rec {
     inherit pname;
-    version = "3.38.0";
+    version = "3.38.1";
 
     # nixpkgs-update: no auto update
     src = assert version == sqlite.version; fetchurl {
       url = "https://sqlite.org/2022/sqlite-src-${archiveVersion version}.zip";
-      sha256 = "sha256-d8U9SBLK14VvXxoeB9KiwqNETSapZSdCefjdn6pv9IA=";
+      sha256 = "sha256-F3rv2oF/qfUoJeF0hYf3wnqbXmtTpIHNQ0YfJ0bZMdg=";
     };
 
     nativeBuildInputs = [ unzip ];