nixpkgs/pkgs/games/papermc/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

41 lines
1.2 KiB
Nix
Raw Normal View History

2021-01-15 04:31:39 +00:00
{ lib, stdenv, fetchurl, bash, jre }:
2023-01-16 21:22:01 +00:00
stdenv.mkDerivation rec {
pname = "papermc";
version = "1.19.3.375";
jar = let
mcVersion = lib.versions.pad 3 version;
buildNum = builtins.elemAt (lib.versions.splitVersion version) 3;
in fetchurl {
url = "https://papermc.io/api/v2/projects/paper/versions/${mcVersion}/builds/${buildNum}/downloads/paper-${mcVersion}-${buildNum}.jar";
2023-01-11 23:40:42 +00:00
sha256 = "sha256-NAl4+mCkO6xQQpIx2pd9tYX2N8VQa+2dmFwyBNbDa10=";
2020-02-28 00:39:25 +00:00
};
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/";
sourceProvenance = with lib.sourceTypes; [ binaryBytecode ];
2021-01-15 04:31:39 +00:00
license = lib.licenses.gpl3Only;
platforms = lib.platforms.unix;
2021-02-01 17:47:47 +00:00
maintainers = with lib.maintainers; [ aaronjanse neonfuz ];
mainProgram = "minecraft-server";
2020-02-28 00:39:25 +00:00
};
}