36 lines
930 B
Nix
36 lines
930 B
Nix
{ buildPythonPackage
|
|
, fetchFromGitHub
|
|
, lib
|
|
, git
|
|
, riscv-isac
|
|
, riscv-config
|
|
, jinja2
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "riscof";
|
|
version = "1.25.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "riscv-software-src";
|
|
repo = pname;
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-ToI2xI0fvnDR+hJ++T4ss5X3gc4G6Cj1uJHx0m2X7GY=";
|
|
};
|
|
|
|
postPatch = "substituteInPlace riscof/requirements.txt --replace 'GitPython==3.1.17' GitPython";
|
|
|
|
propagatedBuildInputs = [ riscv-isac riscv-config jinja2 ];
|
|
|
|
patches = [
|
|
# riscof copies a template directory from the store, but breaks because it doesn't change permissions and expects it to be writeable
|
|
./make_writeable.patch
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/riscv-software-src/riscof";
|
|
description = "RISC-V Architectural Test Framework";
|
|
maintainers = with maintainers; [ genericnerdyusername ];
|
|
license = licenses.bsd3;
|
|
};
|
|
}
|