64 lines
1.4 KiB
Nix
64 lines
1.4 KiB
Nix
|
{ lib
|
||
|
, stdenv
|
||
|
, fetchFromGitHub
|
||
|
, pkg-config
|
||
|
, qtbase
|
||
|
, qtsvg
|
||
|
, qtcharts
|
||
|
, wrapQtAppsHook
|
||
|
, cmake
|
||
|
, python3
|
||
|
, unstableGitUpdater
|
||
|
}:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
pname = "ripes";
|
||
|
# Pulling unstable version as latest stable does not build against gcc-13.
|
||
|
version = "2.2.6-unstable-2024-04-04";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "mortbopet";
|
||
|
repo = "Ripes";
|
||
|
rev = "878087332afa3558dc8ca657f80a16ecdcf82818";
|
||
|
fetchSubmodules = true;
|
||
|
hash = "sha256-aNJTM/s4GNhWVXQxK1R/rIN/NmeKglibQZMh8ENjIzo=";
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [
|
||
|
cmake
|
||
|
pkg-config
|
||
|
python3
|
||
|
wrapQtAppsHook
|
||
|
];
|
||
|
|
||
|
buildInputs = [
|
||
|
qtbase
|
||
|
qtsvg
|
||
|
qtcharts
|
||
|
];
|
||
|
|
||
|
installPhase = ''
|
||
|
runHook preInstall
|
||
|
'' + lib.optionalString stdenv.hostPlatform.isDarwin ''
|
||
|
mkdir -p $out/Applications
|
||
|
cp -r Ripes.app $out/Applications/
|
||
|
makeBinaryWrapper $out/Applications/Ripes.app/Contents/MacOS/Ripes $out/bin/Ripes
|
||
|
'' + lib.optionalString stdenv.hostPlatform.isLinux ''
|
||
|
install -D Ripes $out/bin/Ripes
|
||
|
'' + ''
|
||
|
cp -r ${src}/appdir/usr/share $out/share
|
||
|
runHook postInstall
|
||
|
'';
|
||
|
|
||
|
passthru.updateScript = unstableGitUpdater { };
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Graphical processor simulator and assembly editor for the RISC-V ISA";
|
||
|
homepage = "https://github.com/mortbopet/Ripes";
|
||
|
license = licenses.mit;
|
||
|
platforms = platforms.unix;
|
||
|
mainProgram = "Ripes";
|
||
|
maintainers = with maintainers; [ rewine ];
|
||
|
};
|
||
|
}
|