15 lines
430 B
Nix
15 lines
430 B
Nix
{
|
|
inputs,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
mcuxpresso = import ./mcuxpresso pkgs;
|
|
# unfortunately needed since bolt-launcher uses openssl-1.1.1w (as this is a flake output, it cannot use the host's nixpkgs instance so we have to override it here)
|
|
bolt-launcher =
|
|
(import inputs.nixpkgs {
|
|
config.permittedInsecurePackages = ["openssl-1.1.1w"];
|
|
inherit (pkgs) system;
|
|
})
|
|
.callPackage
|
|
./bolt-launcher.nix {};
|
|
}
|