nixpkgs/pkgs/games/papermc/default.nix

37 lines
951 B
Nix
Raw Normal View History

2021-01-15 04:31:39 +00:00
{ lib, stdenv, fetchurl, bash, jre }:
2020-02-28 00:39:25 +00:00
let
2020-11-27 23:10:18 +00:00
mcVersion = "1.16.4";
buildNum = "296";
2020-02-28 00:39:25 +00:00
jar = fetchurl {
url = "https://papermc.io/api/v1/paper/${mcVersion}/${buildNum}/download";
2020-11-27 23:10:18 +00:00
sha256 = "0885417w7qahk2fwlzvggbwrhvwgpd7xas8lzzb7ar469vyvd9dz";
2020-02-28 00:39:25 +00:00
};
in stdenv.mkDerivation {
pname = "papermc";
version = "${mcVersion}r${buildNum}";
preferLocalBuild = true;
dontUnpack = true;
dontConfigure = true;
buildPhase = ''
cat > minecraft-server << EOF
#!${bash}/bin/sh
exec ${jre}/bin/java \$@ -jar $out/share/papermc/papermc.jar nogui
2020-02-28 00:39:25 +00:00
'';
installPhase = ''
install -Dm444 ${jar} $out/share/papermc/papermc.jar
install -Dm555 -t $out/bin minecraft-server
'';
2020-02-28 00:39:25 +00:00
meta = {
description = "High-performance Minecraft Server";
homepage = "https://papermc.io/";
2021-01-15 04:31:39 +00:00
license = lib.licenses.gpl3Only;
platforms = lib.platforms.unix;
maintainers = with lib.maintainers; [ aaronjanse ];
2020-02-28 00:39:25 +00:00
};
}