8e3ff64369
Avoid breaking flakes pure evaluation by using pkgsCross to get RISC-V test binaries.
54 lines
1.4 KiB
Nix
54 lines
1.4 KiB
Nix
{ lib, stdenv, fetchgit, dtc, fetchpatch, pkgsCross }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "spike";
|
|
version = "1.0.0";
|
|
|
|
src = fetchgit {
|
|
url = "https://github.com/riscv/riscv-isa-sim.git";
|
|
rev = "v${version}";
|
|
sha256 = "1hcl01nj96s3rkz4mrq747s5lkw81lgdjdimb8b1b9h8qnida7ww";
|
|
};
|
|
|
|
nativeBuildInputs = [ dtc ];
|
|
enableParallelBuilding = true;
|
|
|
|
patches = [
|
|
# Add missing headers to fix build.
|
|
(fetchpatch {
|
|
url = "https://github.com/riscv/riscv-isa-sim/commit/b3855682c2d744c613d2ffd6b53e3f021ecea4f3.patch";
|
|
sha256 = "1v1mpp4iddf5n4h3kmj65g075m7xc31bxww7gldnmgl607ma7cnl";
|
|
})
|
|
];
|
|
|
|
postPatch = ''
|
|
patchShebangs scripts/*.sh
|
|
patchShebangs tests/ebreak.py
|
|
'';
|
|
|
|
doCheck = true;
|
|
|
|
# To test whether spike is working, we run the RISC-V hello applications using the RISC-V proxy
|
|
# kernel on the Spike emulator and see whether we get the expected output.
|
|
doInstallCheck = true;
|
|
installCheckPhase =
|
|
let
|
|
riscvPkgs = pkgsCross.riscv64-embedded;
|
|
in
|
|
''
|
|
runHook preInstallCheck
|
|
|
|
$out/bin/spike -m64 ${riscvPkgs.riscv-pk}/bin/pk ${riscvPkgs.hello}/bin/hello | grep -Fq "Hello, world"
|
|
|
|
runHook postInstallCheck
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "A RISC-V ISA Simulator";
|
|
homepage = "https://github.com/riscv/riscv-isa-sim";
|
|
license = licenses.bsd3;
|
|
platforms = [ "x86_64-linux" "aarch64-linux" ];
|
|
maintainers = with maintainers; [ blitz ];
|
|
};
|
|
}
|