mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Merge pull request #81223 from aaronjanse/init-papermc
papermc: init at 1.15.2r121
This commit is contained in:
commit
0bb17a4b19
2 changed files with 37 additions and 0 deletions
35
pkgs/games/papermc/default.nix
Normal file
35
pkgs/games/papermc/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -23662,6 +23662,8 @@ in
|
|||
|
||||
pacvim = callPackage ../games/pacvim { };
|
||||
|
||||
papermc = callPackage ../games/papermc { };
|
||||
|
||||
pentobi = libsForQt5.callPackage ../games/pentobi { };
|
||||
|
||||
performous = callPackage ../games/performous {
|
||||
|
|
Loading…
Reference in a new issue