core/pkgs/by-name/sq/sqlite/packages.nix
2024-06-30 09:16:52 +01:00

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