tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
sqlite: 3.37.0 -> 3.37.2
authored by
R. Ryantm
and committed by
zowoq
4 years ago
2d0daff4
aed0ee64
+6
-6
2 changed files
expand all
collapse all
unified
split
pkgs
development
libraries
sqlite
default.nix
tools.nix
+3
-3
pkgs/development/libraries/sqlite/default.nix
···
11
11
12
12
stdenv.mkDerivation rec {
13
13
pname = "sqlite";
14
14
-
version = "3.37.0";
14
14
+
version = "3.37.2";
15
15
16
16
# NB! Make sure to update ./tools.nix src (in the same directory).
17
17
src = fetchurl {
18
18
-
url = "https://sqlite.org/2021/sqlite-autoconf-${archiveVersion version}.tar.gz";
19
19
-
sha256 = "sha256-cxpGUdTUs2/H0h21hrLeTdAK8x/VT7WppLf0kgV0efc=";
18
18
+
url = "https://sqlite.org/2022/sqlite-autoconf-${archiveVersion version}.tar.gz";
19
19
+
sha256 = "sha256-QImo2bRnU3s/JG8he4TNduALHRqXH+WsoeMOIw5Gstg=";
20
20
};
21
21
22
22
outputs = [ "bin" "dev" "out" ];
+3
-3
pkgs/development/libraries/sqlite/tools.nix
···
4
4
archiveVersion = import ./archive-version.nix lib;
5
5
mkTool = { pname, makeTarget, description, homepage }: stdenv.mkDerivation rec {
6
6
inherit pname;
7
7
-
version = "3.37.0";
7
7
+
version = "3.37.2";
8
8
9
9
src = assert version == sqlite.version; fetchurl {
10
10
-
url = "https://sqlite.org/2021/sqlite-src-${archiveVersion version}.zip";
11
11
-
sha256 = "sha256-cJd/s5Qhh9RidBOv3pqUkvoCuVSFCBK1OXS2ox7Oj68=";
10
10
+
url = "https://sqlite.org/2022/sqlite-src-${archiveVersion version}.zip";
11
11
+
sha256 = "sha256-SGdwtNX4i1uw26VA3W7hdjBn11Od/uGKfGb+m7A9Ftk=";
12
12
};
13
13
14
14
nativeBuildInputs = [ unzip ];