core/pkgs/by-name/sq/sqlite/packages.nix
2024-05-13 22:24:10 +01:00

16 lines
322 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;
}