depot/third_party/nixpkgs/pkgs/development/tools/rars/default.nix
Default email 587713944a Project import generated by Copybara.
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
2024-04-21 17:54:59 +02:00

34 lines
931 B
Nix

{ lib, fetchurl, stdenvNoCC, makeWrapper, jre }:
stdenvNoCC.mkDerivation rec {
pname = "rars";
version = "1.6";
src = fetchurl {
url = "https://github.com/TheThirdOne/rars/releases/download/v${version}/rars1_6.jar";
hash = "sha256-eA9zDrRXsbpgnpaKzMLIt32PksPZ2/MMx/2zz7FOjCQ=";
};
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";
mainProgram = "rars";
homepage = "https://github.com/TheThirdOne/rars";
sourceProvenance = with sourceTypes; [ binaryBytecode ];
license = licenses.mit;
maintainers = with maintainers; [ athas ];
platforms = platforms.all;
};
}