mirror of
https://github.com/NixOS/nixos-hardware.git
synced 2025-11-05 01:37:24 +08:00
This refactoring reduces code duplication across i.MX93, i.MX8MP, and i.MX8MQ platforms by extracting common build logic into parameterized shared builders. This makes it easier to maintain and add new i.MX platforms while ensuring consistency across all platforms.
14 lines
371 B
Nix
14 lines
371 B
Nix
{ pkgs }:
|
|
pkgs.callPackage ../../common/bsp/imx-optee-builder.nix {
|
|
pname = "imx8mq-optee-os";
|
|
version = "lf-6.1.55-2.2.0";
|
|
|
|
src = pkgs.fetchgit {
|
|
url = "https://github.com/nxp-imx/imx-optee-os.git";
|
|
rev = "a303fc80f7c4bd713315687a1fa1d6ed136e78ee";
|
|
sha256 = "sha256-OpyG812DX0c06bRZPKWB2cNu6gtZCOvewDhsKgrGB+s=";
|
|
};
|
|
|
|
platformFlavor = "mx8mqevk";
|
|
}
|