summary refs log tree commit diff
path: root/pkgs/development/libraries/sqlite/analyzer.nix
diff options
context:
space:
mode:
authorAndreas Rammhold <andreas@rammhold.de>2019-10-21 17:34:20 +0200
committerAndreas Rammhold <andreas@rammhold.de>2019-10-21 21:58:37 +0200
commit61017517a34cfd7c542ba8b3a3d19ed8c2c120da (patch)
treee9c804de9263305ec2612781fafe5cdd4fdf1df5 /pkgs/development/libraries/sqlite/analyzer.nix
parentb4f278a07c8ec97716eb67b843445cfb40bf8a71 (diff)
downloadnixpkgs-61017517a34cfd7c542ba8b3a3d19ed8c2c120da.tar
nixpkgs-61017517a34cfd7c542ba8b3a3d19ed8c2c120da.tar.gz
nixpkgs-61017517a34cfd7c542ba8b3a3d19ed8c2c120da.tar.bz2
nixpkgs-61017517a34cfd7c542ba8b3a3d19ed8c2c120da.tar.lz
nixpkgs-61017517a34cfd7c542ba8b3a3d19ed8c2c120da.tar.xz
nixpkgs-61017517a34cfd7c542ba8b3a3d19ed8c2c120da.tar.zst
nixpkgs-61017517a34cfd7c542ba8b3a3d19ed8c2c120da.zip
sqlite: 3.28.0 -> 3.30.0
Also bumps sqlite3_analyze as those have to be kept in sync
Diffstat (limited to 'pkgs/development/libraries/sqlite/analyzer.nix')
-rw-r--r--pkgs/development/libraries/sqlite/analyzer.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/sqlite/analyzer.nix b/pkgs/development/libraries/sqlite/analyzer.nix
index 3c5761b767e..6de71d066ad 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.28.0";
+  version = "3.30.0";
 
   src = assert version == sqlite.version; fetchurl {
     url = "https://sqlite.org/2019/sqlite-src-${archiveVersion version}.zip";
-    sha256 = "15v57b113bpgcshfsx5jw93szar3da94rr03i053xhl15la7jllh";
+    sha256 = "0d4i87q0f618pmrgax0mr5x7m8bywikrwjvixag3biyhgl5rx7fd";
   };
 
   nativeBuildInputs = [ unzip ];