42 lines
982 B
Nix
42 lines
982 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
makeWrapper,
|
|
jre,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "fabric-installer";
|
|
version = "1.0.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://maven.fabricmc.net/net/fabricmc/fabric-installer/${version}/fabric-installer-${version}.jar";
|
|
sha256 = "sha256-Yu3xcL3MQe3qhdM6zz64VHQlhpmz1B+UGNKGyDbLCI0=";
|
|
};
|
|
|
|
dontUnpack = true;
|
|
|
|
nativeBuildInputs = [
|
|
jre
|
|
makeWrapper
|
|
];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/{bin,lib/fabric}
|
|
|
|
cp $src $out/lib/fabric/fabric-installer.jar
|
|
makeWrapper ${jre}/bin/java $out/bin/fabric-installer \
|
|
--add-flags "-jar $out/lib/fabric/fabric-installer.jar"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://fabricmc.net/";
|
|
description = "Lightweight, experimental modding toolchain for Minecraft";
|
|
mainProgram = "fabric-installer";
|
|
sourceProvenance = with sourceTypes; [ binaryBytecode ];
|
|
license = licenses.asl20;
|
|
maintainers = [ ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|