summary refs log tree commit diff
path: root/pkgs/development/libraries/sqlite
diff options
context:
space:
mode:
authorMarkus S. Wamser <github-dev@mail2013.wamser.eu>2020-01-22 21:22:12 +0100
committerFrederik Rietdijk <freddyrietdijk@fridh.nl>2020-02-11 07:57:14 +0100
commit4959c970ee991a5c1b049649ccd392a9c2a2ca79 (patch)
tree4fefcb3c64f3274f793833e340c65c47253042c5 /pkgs/development/libraries/sqlite
parent92f660e2542fe9b3b4babe8c80e1d282a31aa779 (diff)
downloadnixpkgs-4959c970ee991a5c1b049649ccd392a9c2a2ca79.tar
nixpkgs-4959c970ee991a5c1b049649ccd392a9c2a2ca79.tar.gz
nixpkgs-4959c970ee991a5c1b049649ccd392a9c2a2ca79.tar.bz2
nixpkgs-4959c970ee991a5c1b049649ccd392a9c2a2ca79.tar.lz
nixpkgs-4959c970ee991a5c1b049649ccd392a9c2a2ca79.tar.xz
nixpkgs-4959c970ee991a5c1b049649ccd392a9c2a2ca79.tar.zst
nixpkgs-4959c970ee991a5c1b049649ccd392a9c2a2ca79.zip
sqlite: 3.30.1 -> 3.31.0 (security)
Diffstat (limited to 'pkgs/development/libraries/sqlite')
-rw-r--r--pkgs/development/libraries/sqlite/analyzer.nix6
-rw-r--r--pkgs/development/libraries/sqlite/default.nix6
2 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/development/libraries/sqlite/analyzer.nix b/pkgs/development/libraries/sqlite/analyzer.nix
index 6de71d066ad..2b287c7cc61 100644
--- a/pkgs/development/libraries/sqlite/analyzer.nix
+++ b/pkgs/development/libraries/sqlite/analyzer.nix
@@ -6,11 +6,11 @@ in
 
 stdenv.mkDerivation rec {
   pname = "sqlite-analyzer";
-  version = "3.30.0";
+  version = "3.31.0";
 
   src = assert version == sqlite.version; fetchurl {
-    url = "https://sqlite.org/2019/sqlite-src-${archiveVersion version}.zip";
-    sha256 = "0d4i87q0f618pmrgax0mr5x7m8bywikrwjvixag3biyhgl5rx7fd";
+    url = "https://sqlite.org/2020/sqlite-src-${archiveVersion version}.zip";
+    sha256 = "1dz3s3q9gsxxfj9wp4lqndzpwd1hcvm42yqn02p0l0bs6bw0mp5l";
   };
 
   nativeBuildInputs = [ unzip ];
diff --git a/pkgs/development/libraries/sqlite/default.nix b/pkgs/development/libraries/sqlite/default.nix
index d904637fcd3..fe0eb54cf11 100644
--- a/pkgs/development/libraries/sqlite/default.nix
+++ b/pkgs/development/libraries/sqlite/default.nix
@@ -10,12 +10,12 @@ in
 
 stdenv.mkDerivation rec {
   pname = "sqlite";
-  version = "3.30.1";
+  version = "3.31.0";
 
   # NB! Make sure to update analyzer.nix src (in the same directory).
   src = fetchurl {
-    url = "https://sqlite.org/2019/sqlite-autoconf-${archiveVersion version}.tar.gz";
-    sha256 = "0q4f57a5995wz9c7dfiqy9zwl0kn0b900nxwinqa3llv13dm0nlc";
+    url = "https://sqlite.org/2020/sqlite-autoconf-${archiveVersion version}.tar.gz";
+    sha256 = "1w7i954349sjd5a6rvy118prra43k07y9hy8rpajs6vmjmnnx7bw";
   };
 
   outputs = [ "bin" "dev" "out" ];