flocon/shared/pkgs/default.nix

18 lines
514 B
Nix
Raw Normal View History

{
inputs,
pkgs,
...
}: let
mcuxpressoPkgs = inputs.nixpkgs-mcuxpresso.legacyPackages.${pkgs.system};
in {
mcuxpresso = pkgs.callPackage ./mcuxpresso.nix mcuxpressoPkgs;
# this is unfortunately needed since bolt-launcher makes use of openssl-1.1.1w, and since it is not part of hosts, we have to add it this way
bolt-launcher =
(import inputs.nixpkgs {
inherit (pkgs) system;
config.permittedInsecurePackages = ["openssl-1.1.1w"];
})
.callPackage
./bolt-launcher.nix {};
}