nixpkgs/pkgs/games/papermc/default.nix

37 lines
959 B
Nix
Raw Normal View History

2021-01-15 05:31:39 +01:00
{ lib, stdenv, fetchurl, bash, jre }:
2020-02-28 01:39:25 +01:00
let
2021-02-01 18:39:03 +01:00
mcVersion = "1.16.5";
2021-06-08 00:59:38 +02:00
buildNum = "771";
2020-02-28 01:39:25 +01:00
jar = fetchurl {
2021-06-08 00:59:38 +02:00
url = "https://papermc.io/api/v1/paper/${mcVersion}/${buildNum}/download";
sha256 = "1lmlfhigbzbkgzfq6knglka0ccf4i32ch25gkny0c5fllmsnm08l";
2020-02-28 01:39:25 +01: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 01:39:25 +01:00
'';
installPhase = ''
install -Dm444 ${jar} $out/share/papermc/papermc.jar
install -Dm555 -t $out/bin minecraft-server
'';
2020-02-28 01:39:25 +01:00
meta = {
description = "High-performance Minecraft Server";
homepage = "https://papermc.io/";
2021-01-15 05:31:39 +01:00
license = lib.licenses.gpl3Only;
platforms = lib.platforms.unix;
2021-02-01 18:47:47 +01:00
maintainers = with lib.maintainers; [ aaronjanse neonfuz ];
2020-02-28 01:39:25 +01:00
};
}