Skip to content

Commit

Permalink
sqlite, sqlite-analyzer: 3.45.2 -> 3.45.3
Browse files Browse the repository at this point in the history
  • Loading branch information
trofi committed Apr 18, 2024
1 parent 1a2e7b5 commit 018aeac
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions pkgs/development/libraries/sqlite/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ in

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

# 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-vJBnRC7t8905mJtcXPv/83rmbMnJknTgwwUtxNSo9q4=";
hash = "sha256-soCcpTEkwZxg9Cv2J3NurgEa/cwgW7SCcKXumjgZFTE=";
};

outputs = [ "bin" "dev" "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.45.2";
version = "3.45.3";

# nixpkgs-update: no auto update
src = assert version == sqlite.version; fetchurl {
url = "https://sqlite.org/2024/sqlite-src-${archiveVersion version}.zip";
hash = "sha256-SkWjV3zIr2g8S9TG6Bp8eCxbfV2qBhdeosuXHKcWkbE=";
hash = "sha256-7AyVnkLLXxgEE10FVfjqMr5v8gSOsYG8zTZ8j1PxhdE=";
};

nativeBuildInputs = [ unzip ];
Expand Down

0 comments on commit 018aeac

Please sign in to comment.