31 lines
877 B
Nix
31 lines
877 B
Nix
|
{ lib, stdenv, fetchFromGitHub, cmake, wrapQtAppsHook, qtbase }:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
pname = "QtRVSim";
|
||
|
version = "0.9.2";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "cvut";
|
||
|
repo = "qtrvsim";
|
||
|
rev = "refs/tags/v${version}";
|
||
|
sha256 = "B1l+ysrodeDbxYfdLLMF8yk4/uPXTcDrTaMtYm89HuU=";
|
||
|
};
|
||
|
|
||
|
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";
|
||
|
};
|
||
|
}
|