Skip to content

Commit

Permalink
sqlite-rsync: init at 3.47.0
Browse files Browse the repository at this point in the history
Co-authored-by: Erlend Hamberg
  • Loading branch information
trofi committed Oct 29, 2024
1 parent 40338db commit 2e19720
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 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 @@ -2,7 +2,7 @@
, updateAutotoolsGnuConfigScriptsHook

# for tests
, python3Packages, sqldiff, sqlite-analyzer, tinysparql
, python3Packages, sqldiff, sqlite-analyzer, sqlite-rsync, tinysparql

# uses readline & ncurses for a better interactive experience if set to true
, interactive ? false
Expand Down Expand Up @@ -97,7 +97,7 @@ stdenv.mkDerivation rec {
passthru = {
tests = {
inherit (python3Packages) sqlalchemy;
inherit sqldiff sqlite-analyzer tinysparql;
inherit sqldiff sqlite-analyzer sqlite-rsync tinysparql;
};

updateScript = gitUpdater {
Expand Down
7 changes: 7 additions & 0 deletions pkgs/development/libraries/sqlite/tools.nix
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,11 @@ in
homepage = "https://www.sqlite.org/sqlanalyze.html";
mainProgram = "sqlite3_analyzer";
};
sqlite-rsync = mkTool {
pname = "sqlite-rsync";
makeTarget = "sqlite3_rsync";
description = "Database remote-copy tool for SQLite";
homepage = "https://www.sqlite.org/rsync.html";
mainProgram = "sqlite3_rsync";
};
}
2 changes: 1 addition & 1 deletion pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -23097,7 +23097,7 @@ with pkgs;

inherit (callPackage ../development/libraries/sqlite/tools.nix {
inherit (darwin.apple_sdk.frameworks) Foundation;
}) sqlite-analyzer sqldiff;
}) sqlite-analyzer sqldiff sqlite-rsync;

sqlar = callPackage ../development/libraries/sqlite/sqlar.nix { };

Expand Down

0 comments on commit 2e19720

Please sign in to comment.