summary refs log tree commit diff
path: root/pkgs/development/libraries/sqlite
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2018-11-05 22:41:29 -0600
committerAndreas Rammhold <andreas@rammhold.de>2018-11-16 09:43:46 +0100
commit6f0c65ee3f72cc4f1c3195610fc285a2ed441c0b (patch)
treecf287fcd4c4250972da71a52a5a85a86ee011246 /pkgs/development/libraries/sqlite
parent2e2740165a56497654dfb6a2845efb4fe1e9cb74 (diff)
downloadnixpkgs-6f0c65ee3f72cc4f1c3195610fc285a2ed441c0b.tar
nixpkgs-6f0c65ee3f72cc4f1c3195610fc285a2ed441c0b.tar.gz
nixpkgs-6f0c65ee3f72cc4f1c3195610fc285a2ed441c0b.tar.bz2
nixpkgs-6f0c65ee3f72cc4f1c3195610fc285a2ed441c0b.tar.lz
nixpkgs-6f0c65ee3f72cc4f1c3195610fc285a2ed441c0b.tar.xz
nixpkgs-6f0c65ee3f72cc4f1c3195610fc285a2ed441c0b.tar.zst
nixpkgs-6f0c65ee3f72cc4f1c3195610fc285a2ed441c0b.zip
sqlite: 3.25.2 -> 3.25.3
https://sqlite.org/releaselog/3_25_3.html
Diffstat (limited to 'pkgs/development/libraries/sqlite')
-rw-r--r--pkgs/development/libraries/sqlite/analyzer.nix4
-rw-r--r--pkgs/development/libraries/sqlite/default.nix4
2 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/libraries/sqlite/analyzer.nix b/pkgs/development/libraries/sqlite/analyzer.nix
index 4f8203523c4..f3d69f09444 100644
--- a/pkgs/development/libraries/sqlite/analyzer.nix
+++ b/pkgs/development/libraries/sqlite/analyzer.nix
@@ -6,11 +6,11 @@ in
 
 stdenv.mkDerivation rec {
   name = "sqlite-analyzer-${version}";
-  version = "3.25.2";
+  version = "3.25.3";
 
   src = assert version == sqlite.version; fetchurl {
     url = "https://sqlite.org/2018/sqlite-src-${archiveVersion version}.zip";
-    sha256 = "0n7lzp671x1xz6fx138xa1jhi4vfwib3awaxac5skw6fv9q61940";
+    sha256 = "08b4fs9mrah5gxl1865smlqs2ba6g7k7d6pfa084i6d78342p4n7";
   };
 
   nativeBuildInputs = [ unzip ];
diff --git a/pkgs/development/libraries/sqlite/default.nix b/pkgs/development/libraries/sqlite/default.nix
index 74d8310777d..c98164ae63b 100644
--- a/pkgs/development/libraries/sqlite/default.nix
+++ b/pkgs/development/libraries/sqlite/default.nix
@@ -10,12 +10,12 @@ in
 
 stdenv.mkDerivation rec {
   name = "sqlite-${version}";
-  version = "3.25.2";
+  version = "3.25.3";
 
   # NB! Make sure to update analyzer.nix src (in the same directory).
   src = fetchurl {
     url = "https://sqlite.org/2018/sqlite-autoconf-${archiveVersion version}.tar.gz";
-    sha256 = "109i1sfryghrdaynkqq9s9aq4347vy653bwkqwx4slix8a2196ns";
+    sha256 = "1pgkja0d13qp5p79ik9kh9lm5y79cwyxwwfc80cr8a1rw5xzksq0";
   };
 
   outputs = [ "bin" "dev" "out" ];