sqlite, sqlite-analyzer: 3.47.1 -> 3.47.2

Changes: https://www.sqlite.org/releaselog/current.html
This commit is contained in:
Sergei Trofimovich
2024-12-17 16:57:51 +00:00
parent 10a7a76d97
commit 4e019c1689
2 changed files with 5 additions and 5 deletions
@@ -16,17 +16,17 @@ in
stdenv.mkDerivation rec {
pname = "sqlite${lib.optionalString interactive "-interactive"}";
version = "3.47.1";
version = "3.47.2";
# nixpkgs-update: no auto update
# NB! Make sure to update ./tools.nix src (in the same directory).
src = fetchurl {
url = "https://sqlite.org/2024/sqlite-autoconf-${archiveVersion version}.tar.gz";
hash = "sha256-QWpvRb8srNSUsgj97hvtpQmr2pUdX0e8TyeSEm8BtFI=";
hash = "sha256-8bLuQSwo10cryVupljaNbwzc8ANir/2tsn7ShsF5VAs=";
};
docsrc = fetchurl {
url = "https://sqlite.org/2024/sqlite-doc-${archiveVersion version}.zip";
hash = "sha256-+d7I5WPbDeCoFxoQf1j3FFbBaRMEgIKTSVHSX93+Ta0=";
hash = "sha256-bcyommdJAp+6gbwPQYjL1PeKy0jWo+rcbVSK+RF8P0E=";
};
outputs = [ "bin" "dev" "man" "doc" "out" ];
+2 -2
View File
@@ -4,12 +4,12 @@ let
archiveVersion = import ./archive-version.nix lib;
mkTool = { pname, makeTarget, description, homepage, mainProgram }: stdenv.mkDerivation rec {
inherit pname;
version = "3.47.1";
version = "3.47.2";
# nixpkgs-update: no auto update
src = assert version == sqlite.version; fetchurl {
url = "https://sqlite.org/2024/sqlite-src-${archiveVersion version}.zip";
hash = "sha256-VyRX8CsD/qImps3lqv1VoKZzd4a8sp47hb+yGRi1LOc=";
hash = "sha256-5qRx8SOCJfNMLEjFYBtUAkzFOARDaCMPWf8Gcr4fxiM=";
};
nativeBuildInputs = [ unzip ];