2024-05-02 00:46:19 +00:00
|
|
|
{ ... }:
|
|
|
|
res: pkgs: super:
|
|
|
|
|
2024-05-13 21:24:10 +00:00
|
|
|
with pkgs; {
|
|
|
|
krb5 =
|
|
|
|
callPackage ./krb5.nix { inherit (buildPackages.darwin) bootstrap_cmds; };
|
2024-05-02 00:46:19 +00:00
|
|
|
libkrb5 = krb5.override { type = "lib"; };
|
|
|
|
|
|
|
|
heimdal = callPackage ./heimdal.nix {
|
2024-05-13 21:24:10 +00:00
|
|
|
inherit (darwin.apple_sdk.frameworks)
|
|
|
|
CoreFoundation Security SystemConfiguration;
|
2024-05-02 00:46:19 +00:00
|
|
|
autoreconfHook = buildPackages.autoreconfHook269;
|
|
|
|
};
|
|
|
|
}
|