2021-05-26 14:44:44 +01:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchurl
|
|
|
|
, makeWrapper
|
2021-06-23 02:16:52 +01:00
|
|
|
, jre }:
|
2021-05-26 14:44:44 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "amidst";
|
2021-06-17 01:38:03 +01:00
|
|
|
version = "4.7";
|
2021-05-26 14:44:44 +01:00
|
|
|
|
|
|
|
src = fetchurl { # TODO: Compile from src
|
|
|
|
url = "https://github.com/toolbox4minecraft/amidst/releases/download/v${version}/amidst-v${lib.replaceStrings [ "." ] [ "-" ] version}.jar";
|
2021-06-17 01:38:03 +01:00
|
|
|
sha256 = "sha256-oecRjD7JUuvFym8N/hSE5cbAFQojS6yxOuxpwWRlW9M=";
|
2021-05-26 14:44:44 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
dontUnpack = true;
|
|
|
|
|
2021-06-23 02:16:52 +01:00
|
|
|
nativeBuildInputs = [ jre makeWrapper ];
|
2021-05-26 14:44:44 +01:00
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/{bin,lib/amidst}
|
|
|
|
cp $src $out/lib/amidst/amidst.jar
|
2021-06-23 02:16:52 +01:00
|
|
|
makeWrapper ${jre}/bin/java $out/bin/amidst \
|
2021-05-26 14:44:44 +01:00
|
|
|
--add-flags "-jar $out/lib/amidst/amidst.jar"
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://github.com/toolbox4minecraft/amidst";
|
|
|
|
description = "Advanced Minecraft Interface and Data/Structure Tracking";
|
|
|
|
license = licenses.gpl3Only;
|
|
|
|
maintainers = [ maintainers.ivar ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|