some versions

This commit is contained in:
mjallen18
2026-01-15 09:29:16 -06:00
parent d47b092a8c
commit 8e7a0343c2
15 changed files with 289 additions and 492 deletions

View File

@@ -6,16 +6,19 @@
DEBUG ? "0",
TFA_FLAGS ? "",
}:
let
inherit (lib.trivial) importJSON;
versions = importJSON ./versions.json;
in
stdenv.mkDerivation rec {
pname = "arm-trusted-firmware";
version = "2.14";
version = versions.fw.rev;
src = fetchFromGitHub {
owner = "ARM-software";
repo = "arm-trusted-firmware";
tag = "v${version}";
hash = "sha256-7imeQocGMSyGXTEhNs4s0bcDxZpbLSSkOyI7c5UxqVs=";
hash = versions.fw.hash;
};
# Add required host tools if needed:

View File

@@ -0,0 +1,9 @@
{
"fw": {
"hash": "sha256-eh0b4q6od9ZWAFBQ+wRjpLQEEf8kox2L3l1iHwQtju8=",
"location": "github",
"owner": "ARM-software",
"repo": "arm-trusted-firmware",
"rev": "8fd4c786594239de20669f062e416fe1a37ca59e"
}
}