core/pkgs/by-name/sq/sqlite/packages.nix
2024-05-13 11:34:52 -04:00

16 lines
318 B
Nix

{ ... }:
res: pkgs: super:
with pkgs;
{
sqlite = lowPrio (callPackage ./. { });
inherit (callPackage ./tools.nix {
inherit (darwin.apple_sdk.frameworks) Foundation;
}) sqlite-analyzer sqldiff;
sqlar = callPackage ./sqlar.nix { };
sqlite-interactive = (sqlite.override { interactive = true; }).bin;
}