mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-01 19:33:03 +00:00
34 lines
907 B
Nix
34 lines
907 B
Nix
{ lib, fetchurl, stdenvNoCC, makeWrapper, jre }:
|
|
|
|
stdenvNoCC.mkDerivation rec {
|
|
pname = "rars";
|
|
version = "1.5";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/TheThirdOne/rars/releases/download/v${version}/rars1_5.jar";
|
|
sha256 = "sha256-w75gfARfR46Up6qng1GYL0u8ENfpD3xHhl/yp9lEcUE=";
|
|
};
|
|
|
|
dontUnpack = true;
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
export JAR=$out/share/java/${pname}/${pname}.jar
|
|
install -D $src $JAR
|
|
makeWrapper ${jre}/bin/java $out/bin/${pname} \
|
|
--add-flags "-jar $JAR"
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "RISC-V Assembler and Runtime Simulator";
|
|
homepage = "https://github.com/TheThirdOne/rars";
|
|
sourceProvenance = with sourceTypes; [ binaryBytecode ];
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ athas ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|