Merge pull request #81223 from aaronjanse/init-papermc

papermc: init at 1.15.2r121
This commit is contained in:
Michele Guerini Rocco 2020-04-03 09:15:36 +02:00 committed by GitHub
commit 0bb17a4b19
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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

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