My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/games/purpur/default.nix

42 lines
1.2 KiB

{ lib, stdenv, fetchurl, nixosTests, jre_headless, makeWrapper }:
stdenv.mkDerivation rec {
pname = "purpur";
version = "1.18.1r1522";
src = fetchurl {
url = "https://api.purpurmc.org/v2/purpur/${builtins.replaceStrings [ "r" ] [ "/" ] version}/download";
sha256 = "1060fsfcw6m30d47wla1vsnmc4czyla6m8wf91ws095hbvc22qsm";
};
nativeBuildInputs = [ makeWrapper ];
preferLocalBuild = true;
installPhase = ''
mkdir -p $out/bin $out/lib/minecraft
cp -v $src $out/lib/minecraft/server.jar
makeWrapper ${jre_headless}/bin/java $out/bin/minecraft-server \
--add-flags "-jar $out/lib/minecraft/server.jar nogui"
'';
dontUnpack = true;
passthru = {
tests = { inherit (nixosTests) minecraft-server; };
};
meta = with lib; {
description = "A drop-in replacement for Minecraft Paper servers";
longDescription = ''
Purpur is a drop-in replacement for Minecraft Paper servers designed for configurability, new fun and exciting
gameplay features, and performance built on top of Airplane.
'';
homepage = "https://purpurmc.org/";
license = licenses.mit;
platforms = platforms.unix;
maintainers = with maintainers; [ jyooru ];
mainProgram = "minecraft-server";
};
}