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

17 lines
331 B
Nix

{ ... }:
res: pkgs: super:
with pkgs; {
nixVersions = recurseIntoAttrs (
callPackage ./. {
storeDir = config.nix.storeDir or "/nix/store";
stateDir = config.nix.stateDir or "/nix/var";
inherit (darwin.apple_sdk.frameworks) Security;
}
);
nix = nixVersions.stable;
nixStatic = pkgsStatic.nix;
}