QtRvSim: init at 0.9.1 (#163128)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
parent
454d185d37
commit
d09489e5f1
@ -5631,6 +5631,12 @@
|
||||
github = "jduan";
|
||||
githubId = 452450;
|
||||
};
|
||||
jdupak = {
|
||||
name = "Jakub Dupak";
|
||||
email = "dev@jakubdupak.com";
|
||||
github = "jdupak";
|
||||
githubId = 22683640;
|
||||
};
|
||||
jecaro = {
|
||||
email = "jeancharles.quillet@gmail.com";
|
||||
github = "jecaro";
|
||||
|
@ -0,0 +1,30 @@
|
||||
{ lib, stdenv, fetchFromGitHub, cmake, wrapQtAppsHook, qtbase }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "QtRVSim";
|
||||
version = "0.9.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "cvut";
|
||||
repo = "qtrvsim";
|
||||
rev = "refs/tags/v${version}";
|
||||
sha256 = "AOksVS0drIBnK4RCxZw40yVxf4E8GjG9kU0rIZsY9gA=";
|
||||
};
|
||||
|
||||
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";
|
||||
};
|
||||
}
|
@ -33798,6 +33798,8 @@ with pkgs;
|
||||
|
||||
qMasterPassword = libsForQt5.callPackage ../applications/misc/qMasterPassword { };
|
||||
|
||||
qtrvsim = libsForQt5.callPackage ../applications/science/computer-architecture/qtrvsim { };
|
||||
|
||||
py-wmi-client = callPackage ../tools/networking/py-wmi-client { };
|
||||
|
||||
qdl = callPackage ../tools/misc/qdl { };
|
||||
|
Loading…
Reference in New Issue
Block a user