mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-14 05:29:20 +03:00
opensbi: 1.5.1 -> 1.6
Diff: https://github.com/riscv-software-src/opensbi/compare/v1.5.1...v1.6
This commit is contained in:
parent
7488ac7ab1
commit
cee01a7a06
1 changed files with 8 additions and 8 deletions
|
@ -8,15 +8,15 @@
|
||||||
withFDT ? null,
|
withFDT ? null,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation (finalAttrs: {
|
||||||
pname = "opensbi";
|
pname = "opensbi";
|
||||||
version = "1.5.1";
|
version = "1.6";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "riscv-software-src";
|
owner = "riscv-software-src";
|
||||||
repo = "opensbi";
|
repo = "opensbi";
|
||||||
rev = "v${version}";
|
tag = "v${finalAttrs.version}";
|
||||||
hash = "sha256-qb3orbmZJtesIBj9F2OX+BhrlctymZA1ZIbV/GVa0lU=";
|
hash = "sha256-X3j+4hdNDq36O/vFdlnd/QvDVIkXtvFbheFaZwf4GQY=";
|
||||||
};
|
};
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
|
@ -45,11 +45,11 @@ stdenv.mkDerivation rec {
|
||||||
dontStrip = true;
|
dontStrip = true;
|
||||||
dontPatchELF = true;
|
dontPatchELF = true;
|
||||||
|
|
||||||
meta = with lib; {
|
meta = {
|
||||||
description = "RISC-V Open Source Supervisor Binary Interface";
|
description = "RISC-V Open Source Supervisor Binary Interface";
|
||||||
homepage = "https://github.com/riscv-software-src/opensbi";
|
homepage = "https://github.com/riscv-software-src/opensbi";
|
||||||
license = licenses.bsd2;
|
license = lib.licenses.bsd2;
|
||||||
maintainers = with maintainers; [
|
maintainers = with lib.maintainers; [
|
||||||
ius
|
ius
|
||||||
nickcao
|
nickcao
|
||||||
zhaofengli
|
zhaofengli
|
||||||
|
@ -59,4 +59,4 @@ stdenv.mkDerivation rec {
|
||||||
"riscv32-linux"
|
"riscv32-linux"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
}
|
})
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue