chore(fmt): apply nix formatting

Signed-off-by: Govind Singh <govind.singh@tii.ae>
This commit is contained in:
Govind Singh
2025-10-21 16:00:55 +04:00
committed by Jörg Thalheim
parent 34b7229b95
commit 8b405e9c6d
7 changed files with 27 additions and 24 deletions

View File

@@ -1,8 +1,16 @@
{ lib, fetchgit, stdenv, buildPackages, pkgsCross, openssl }:
{
lib,
fetchgit,
stdenv,
buildPackages,
pkgsCross,
openssl,
}:
let
target-board = "imx93";
in stdenv.mkDerivation rec {
in
stdenv.mkDerivation rec {
pname = "imx93-atf";
version = "2.10.0";
platform = target-board;
@@ -47,4 +55,3 @@ in stdenv.mkDerivation rec {
platforms = [ "aarch64-linux" ];
};
}