3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #209120 from NickCao/opensbi

opensbi: 1.1 -> 1.2
This commit is contained in:
Nick Cao 2023-01-19 18:19:44 +08:00 committed by GitHub
commit 3836bf0297
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,7 @@
{ lib, stdenv, fetchFromGitHub
{ lib
, stdenv
, fetchFromGitHub
, python3
, withPlatform ? "generic"
, withPayload ? null
, withFDT ? null
@ -6,19 +9,21 @@
stdenv.mkDerivation rec {
pname = "opensbi";
version = "1.1";
version = "1.2";
src = fetchFromGitHub {
owner = "riscv-software-src";
repo = "opensbi";
rev = "v${version}";
sha256 = "sha256-k6f4/lWY/f7qqk0AFY4tdEi4cDilSv/jngaJYhKFlnY=";
sha256 = "sha256-Zcl+SE2nySMycV/ozsl4AvGipRsMblA5mt3oVZ81Z44=";
};
postPatch = ''
patchShebangs ./scripts
'';
nativeBuildInputs = [ python3 ];
installFlags = [
"I=$(out)"
];