summary refs log tree commit diff
path: root/pkgs/development/libraries/sqlite
diff options
context:
space:
mode:
authorVladimír Čunát <v@cunat.cz>2020-03-11 08:03:54 +0100
committerVladimír Čunát <v@cunat.cz>2020-03-11 08:03:54 +0100
commitf8bf6f087e4960d3b9c925bd2f6d9f96e621d7a7 (patch)
treec8649ceee7100482e3bf9ed8ebb65ea8994f3af8 /pkgs/development/libraries/sqlite
parentb693c8c7be48dc1ff79733f1fac96c1c3059091f (diff)
downloadnixpkgs-f8bf6f087e4960d3b9c925bd2f6d9f96e621d7a7.tar
nixpkgs-f8bf6f087e4960d3b9c925bd2f6d9f96e621d7a7.tar.gz
nixpkgs-f8bf6f087e4960d3b9c925bd2f6d9f96e621d7a7.tar.bz2
nixpkgs-f8bf6f087e4960d3b9c925bd2f6d9f96e621d7a7.tar.lz
nixpkgs-f8bf6f087e4960d3b9c925bd2f6d9f96e621d7a7.tar.xz
nixpkgs-f8bf6f087e4960d3b9c925bd2f6d9f96e621d7a7.tar.zst
nixpkgs-f8bf6f087e4960d3b9c925bd2f6d9f96e621d7a7.zip
sqlite-analyzer: 3.31.0 -> 3.31.1
This was forgotten in PR #81648.
It's a small bump, so I just tested that it builds.
Diffstat (limited to 'pkgs/development/libraries/sqlite')
-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 2b287c7cc61..38eb1b158c8 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.31.0";
+  version = "3.31.1";
 
   src = assert version == sqlite.version; fetchurl {
     url = "https://sqlite.org/2020/sqlite-src-${archiveVersion version}.zip";
-    sha256 = "1dz3s3q9gsxxfj9wp4lqndzpwd1hcvm42yqn02p0l0bs6bw0mp5l";
+    sha256 = "0n7f3w59gr80s6k4l5a9bp2s97dlfapfbhb3qdhak6axhn127p7j";
   };
 
   nativeBuildInputs = [ unzip ];