flake.nix: split off sqlite debugging tools into separate devshell

This commit is contained in:
2026-04-06 10:21:11 +09:00
parent 61ac226fc3
commit 4fbed59143

View File

@@ -77,16 +77,12 @@
devShells = forAllSystems (system: pkgs: {
default = pkgs.mkShell {
buildInputs = with pkgs; [
packages = with pkgs; [
dart
gnumake
lcov
sqldiff
sqlite-analyzer
sqlite-interactive
sqlite-web
# sqlint
sqlfluff
];
env = {
LIBSQLITE_PATH = "${pkgs.sqlite.out}/lib/libsqlite3.so";
@@ -94,6 +90,16 @@
LD_LIBRARY_PATH = lib.makeLibraryPath [ pkgs.sqlite ];
};
};
sqlite-debugging = pkgs.mkShell {
packages = with pkgs; [
sqlite-sqlite-interactive
sqlite-analyzer
sqlite-web
sqlint
sqlfluff
];
};
});
packages = let