mirror of
https://github.com/NixOS/nixos-hardware.git
synced 2025-11-05 17:38:41 +08:00
chore: format repo using treefmt-nix and nixfmt-rfc-style
This commit is contained in:
@@ -1,8 +1,17 @@
|
||||
{ lib, fetchgit, enable-tee, stdenv, buildPackages, pkgsCross, openssl, }:
|
||||
{
|
||||
lib,
|
||||
fetchgit,
|
||||
enable-tee,
|
||||
stdenv,
|
||||
buildPackages,
|
||||
pkgsCross,
|
||||
openssl,
|
||||
}:
|
||||
let
|
||||
opteedflag = if enable-tee then "SPD=opteed" else "";
|
||||
target-board = "imx8mq";
|
||||
in stdenv.mkDerivation rec {
|
||||
in
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "imx8mq-atf";
|
||||
version = "lf6.1.55_2.2.0";
|
||||
platform = target-board;
|
||||
@@ -48,8 +57,7 @@ in stdenv.mkDerivation rec {
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/nxp-imx/imx-atf";
|
||||
description =
|
||||
"Reference implementation of secure world software for ARMv8-A";
|
||||
description = "Reference implementation of secure world software for ARMv8-A";
|
||||
license = [ licenses.bsd3 ];
|
||||
maintainers = with maintainers; [ gngram ];
|
||||
platforms = [ "aarch64-linux" ];
|
||||
|
||||
Reference in New Issue
Block a user