about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorAndreas Rammhold <andreas@rammhold.de>2020-03-10 18:24:54 +0100
committerGitHub <noreply@github.com>2020-03-10 18:24:54 +0100
commit4df960191e5e11d8f3f246775a3b6771613bbd7f (patch)
tree07f6008d55e842c5f54d340dc35236aada5ce84d /pkgs/development
parent967a5b30476ca02db43f8406019c6d0d575ad258 (diff)
parent15b4beb627471a1326c08eaa3b749788091493cf (diff)
downloadnixlib-4df960191e5e11d8f3f246775a3b6771613bbd7f.tar
nixlib-4df960191e5e11d8f3f246775a3b6771613bbd7f.tar.gz
nixlib-4df960191e5e11d8f3f246775a3b6771613bbd7f.tar.bz2
nixlib-4df960191e5e11d8f3f246775a3b6771613bbd7f.tar.lz
nixlib-4df960191e5e11d8f3f246775a3b6771613bbd7f.tar.xz
nixlib-4df960191e5e11d8f3f246775a3b6771613bbd7f.tar.zst
nixlib-4df960191e5e11d8f3f246775a3b6771613bbd7f.zip
Merge pull request #81648 from r-ryantm/auto-update/sqlite
sqlite: 3.31.0 -> 3.31.1
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/libraries/sqlite/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/libraries/sqlite/default.nix b/pkgs/development/libraries/sqlite/default.nix
index fe0eb54cf114..a59325ba6caf 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.31.0";
+  version = "3.31.1";
 
   # NB! Make sure to update analyzer.nix src (in the same directory).
   src = fetchurl {
     url = "https://sqlite.org/2020/sqlite-autoconf-${archiveVersion version}.tar.gz";
-    sha256 = "1w7i954349sjd5a6rvy118prra43k07y9hy8rpajs6vmjmnnx7bw";
+    sha256 = "1bj936svd8i5g25xd1bj52hj4zca01fgl3sqkj86z9q5pkz4wa32";
   };
 
   outputs = [ "bin" "dev" "out" ];
@@ -76,7 +76,7 @@ stdenv.mkDerivation rec {
   meta = {
     description = "A self-contained, serverless, zero-configuration, transactional SQL database engine";
     downloadPage = https://sqlite.org/download.html;
-    homepage = https://www.sqlite.org/;
+    homepage = "https://www.sqlite.org/";
     license = licenses.publicDomain;
     maintainers = with maintainers; [ eelco np ];
     platforms = platforms.unix ++ platforms.windows;