mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
51 lines
1.1 KiB
Nix
51 lines
1.1 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, python3
|
|
, withPlatform ? "generic"
|
|
, withPayload ? null
|
|
, withFDT ? null
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "opensbi";
|
|
version = "1.5.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "riscv-software-src";
|
|
repo = "opensbi";
|
|
rev = "v${version}";
|
|
hash = "sha256-qb3orbmZJtesIBj9F2OX+BhrlctymZA1ZIbV/GVa0lU=";
|
|
};
|
|
|
|
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 = with lib; {
|
|
description = "RISC-V Open Source Supervisor Binary Interface";
|
|
homepage = "https://github.com/riscv-software-src/opensbi";
|
|
license = licenses.bsd2;
|
|
maintainers = with maintainers; [ ius nickcao zhaofengli ];
|
|
platforms = [ "riscv64-linux" "riscv32-linux" ];
|
|
};
|
|
}
|