papermc: init at 1.15.2r121

gstqt5
Aaron Janse 2020-02-27 16:39:25 -08:00
parent 6bb6882e31
commit 631fe89c59
2 changed files with 37 additions and 0 deletions

View File

@ -0,0 +1,35 @@
{ stdenv, fetchurl, jre }:
let
mcVersion = "1.15.2";
buildNum = "161";
jar = fetchurl {
url = "https://papermc.io/api/v1/paper/${mcVersion}/${buildNum}/download";
sha256 = "1jngj5djs1fjdj25wg9iszw0dsp56f386j8ydms7x4ky8s8kxyms";
};
in stdenv.mkDerivation {
pname = "papermc";
version = "${mcVersion}r${buildNum}";
preferLocalBuild = true;
dontUnpack = true;
installPhase = ''
mkdir -p $out/bin
cp ${jar} $out/papermc.jar
cat > $out/bin/minecraft-server << EOF
#!/bin/sh
exec ${jre}/bin/java \$@ -jar $out/papermc.jar nogui
EOF
chmod +x $out/bin/minecraft-server
'';
phases = "installPhase";
meta = {
description = "High-performance Minecraft Server";
homepage = "https://papermc.io/";
license = stdenv.lib.licenses.gpl3;
platforms = stdenv.lib.platforms.unix;
maintainers = with stdenv.lib.maintainers; [ aaronjanse ];
};
}

View File

@ -23362,6 +23362,8 @@ in
pacvim = callPackage ../games/pacvim { };
papermc = callPackage ../games/papermc { };
pentobi = libsForQt5.callPackage ../games/pentobi { };
performous = callPackage ../games/performous {