optee-os: remove with statement in meta

This commit is contained in:
Jared Baur
2026-01-15 14:15:19 -08:00
parent c9aed15eaa
commit b3387422fe
+8 -10
View File
@@ -107,16 +107,14 @@ let
outputDev = "devkit";
outputLib = "devkit";
meta =
{
description = "Trusted Execution Environment for ARM";
homepage = "https://github.com/OP-TEE/optee_os";
changelog = "https://github.com/OP-TEE/optee_os/blob/${defaultVersion}/CHANGELOG.md";
license = lib.licenses.bsd2;
maintainers = [ lib.maintainers.jmbaur ];
}
// extraMeta;
meta = {
description = "Trusted Execution Environment for ARM";
homepage = "https://github.com/OP-TEE/optee_os";
changelog = "https://github.com/OP-TEE/optee_os/blob/${defaultVersion}/CHANGELOG.md";
license = lib.licenses.bsd2;
maintainers = [ lib.maintainers.jmbaur ];
}
// extraMeta;
}
// removeAttrs args [ "extraMeta" ]
)