sqlite-analyzer: 3.28.0 -> 3.30.0

This commit is contained in:
Daniel Schaefer 2019-11-06 17:23:45 +01:00 committed by Doron Behar
parent 1e136a97fb
commit 0e574bc186
1 changed files with 2 additions and 2 deletions

View File

@ -4,11 +4,11 @@ let
archiveVersion = import ./archive-version.nix stdenv.lib;
mkTool = { pname, makeTarget, description, homepage }: stdenv.mkDerivation rec {
inherit pname;
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 ];