2022-03-30 09:31:56 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, cmake, wrapQtAppsHook, qtbase }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "QtRVSim";
|
2024-02-29 20:09:43 +00:00
|
|
|
version = "0.9.7";
|
2022-03-30 09:31:56 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "cvut";
|
|
|
|
repo = "qtrvsim";
|
|
|
|
rev = "refs/tags/v${version}";
|
2024-02-29 20:09:43 +00:00
|
|
|
sha256 = "sha256-SelmqHauj5Yxg043NZqR4bhqW5clwg1h7UD8mW7j7vE=";
|
2022-03-30 09:31:56 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake wrapQtAppsHook ];
|
|
|
|
|
|
|
|
buildInputs = [ qtbase ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "RISC-V CPU simulator for education purposes";
|
|
|
|
longDescription = ''
|
|
|
|
RISC-V CPU simulator for education purposes with pipeline and cache visualization.
|
|
|
|
Developed at FEE CTU for computer architecture classes.
|
|
|
|
'';
|
|
|
|
homepage = "https://github.com/cvut/qtrvsim";
|
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
|
|
maintainers = with maintainers; [ jdupak ];
|
|
|
|
mainProgram = "qtrvsim_gui";
|
|
|
|
};
|
|
|
|
}
|