Skip to content

Commit

Permalink
sqlite, sqlite-analyzer: 3.47.0 -> 3.47.1 (NixOS#359343)
Browse files Browse the repository at this point in the history
  • Loading branch information
philiptaron authored Dec 17, 2024
2 parents 969a164 + b4aaf6a commit eff980c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions pkgs/development/libraries/sqlite/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,17 @@ in

stdenv.mkDerivation rec {
pname = "sqlite${lib.optionalString interactive "-interactive"}";
version = "3.47.0";
version = "3.47.1";

# 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-g+shpvamSfUG34vTqrhaCPdVbO7V29jep0PqAD/DqVc=";
hash = "sha256-QWpvRb8srNSUsgj97hvtpQmr2pUdX0e8TyeSEm8BtFI=";
};
docsrc = fetchurl {
url = "https://sqlite.org/2024/sqlite-doc-${archiveVersion version}.zip";
hash = "sha256-3yXJb6+4Cck7jhwlxs/XSPRJ99SmV+jBJNOO/v5Ws04=";
hash = "sha256-+d7I5WPbDeCoFxoQf1j3FFbBaRMEgIKTSVHSX93+Ta0=";
};

outputs = [ "bin" "dev" "man" "doc" "out" ];
Expand Down
4 changes: 2 additions & 2 deletions pkgs/development/libraries/sqlite/tools.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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.0";
version = "3.47.1";

# nixpkgs-update: no auto update
src = assert version == sqlite.version; fetchurl {
url = "https://sqlite.org/2024/sqlite-src-${archiveVersion version}.zip";
hash = "sha256-9Zw0m+20cCA1hqa20QrbNfKv76SfkeVaZyo2oJqP7fc=";
hash = "sha256-VyRX8CsD/qImps3lqv1VoKZzd4a8sp47hb+yGRi1LOc=";
};

nativeBuildInputs = [ unzip ];
Expand Down

0 comments on commit eff980c

Please sign in to comment.