Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
62 lines
1.1 KiB
Nix
62 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
python3,
|
|
withPlatform ? "generic",
|
|
withPayload ? null,
|
|
withFDT ? null,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "opensbi";
|
|
version = "1.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "riscv-software-src";
|
|
repo = "opensbi";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-X3j+4hdNDq36O/vFdlnd/QvDVIkXtvFbheFaZwf4GQY=";
|
|
};
|
|
|
|
postPatch = ''
|
|
patchShebangs ./scripts
|
|
'';
|
|
|
|
nativeBuildInputs = [ python3 ];
|
|
|
|
installFlags = [
|
|
"I=$(out)"
|
|
];
|
|
|
|
makeFlags = [
|
|
"PLATFORM=${withPlatform}"
|
|
]
|
|
++ lib.optionals (withPayload != null) [
|
|
"FW_PAYLOAD_PATH=${withPayload}"
|
|
]
|
|
++ lib.optionals (withFDT != null) [
|
|
"FW_FDT_PATH=${withFDT}"
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
dontStrip = true;
|
|
dontPatchELF = true;
|
|
|
|
meta = {
|
|
description = "RISC-V Open Source Supervisor Binary Interface";
|
|
homepage = "https://github.com/riscv-software-src/opensbi";
|
|
license = lib.licenses.bsd2;
|
|
maintainers = with lib.maintainers; [
|
|
ius
|
|
nickcao
|
|
zhaofengli
|
|
];
|
|
platforms = [
|
|
"riscv64-linux"
|
|
"riscv32-linux"
|
|
];
|
|
};
|
|
})
|