3
0
Fork 0
forked from mirrors/nixpkgs

sqlite: 3.36.0 -> 3.37.0

https://www.sqlite.org/releaselog/3_37_0.html
This commit is contained in:
zowoq 2021-11-28 07:18:06 +10:00
parent f4c450e862
commit caf08b7a9d
2 changed files with 4 additions and 4 deletions

View file

@ -11,12 +11,12 @@ in
stdenv.mkDerivation rec {
pname = "sqlite";
version = "3.36.0";
version = "3.37.0";
# NB! Make sure to update ./tools.nix src (in the same directory).
src = fetchurl {
url = "https://sqlite.org/2021/sqlite-autoconf-${archiveVersion version}.tar.gz";
sha256 = "sha256-vZDD65a+6ZYga4O+cGXJzhmu84w/T7Uwc62g0LabvOM=";
sha256 = "sha256-cxpGUdTUs2/H0h21hrLeTdAK8x/VT7WppLf0kgV0efc=";
};
outputs = [ "bin" "dev" "out" ];

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.36.0";
version = "3.37.0";
src = assert version == sqlite.version; fetchurl {
url = "https://sqlite.org/2021/sqlite-src-${archiveVersion version}.zip";
sha256 = "092khwfm0m0i80sjb4fc5569jj0kilm6pa867w0akcv6h38bk8r5";
sha256 = "sha256-cJd/s5Qhh9RidBOv3pqUkvoCuVSFCBK1OXS2ox7Oj68=";
};
nativeBuildInputs = [ unzip ];