sqlite: 3.34.1 -> 3.35.2

https://www.sqlite.org/releaselog/3_35_2.html
This commit is contained in:
zowoq
2021-03-20 06:12:15 +10:00
parent 6e3a55e059
commit 7598a80b52
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -4,11 +4,11 @@ let
archiveVersion = import ./archive-version.nix lib;
mkTool = { pname, makeTarget, description, homepage }: stdenv.mkDerivation rec {
inherit pname;
version = "3.34.1";
version = "3.35.2";
src = assert version == sqlite.version; fetchurl {
url = "https://sqlite.org/2021/sqlite-src-${archiveVersion version}.zip";
sha256 = "0jgzaawf6vn15qyi15b6dlq80sk2gaiwfikingldx5mhjrwj7pfx";
sha256 = "00w7qggrdxpcrs4rfpqkjhcghi8pcx6zzjim9wlz6vsrxlr9dwva";
};
nativeBuildInputs = [ unzip ];