mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
37 lines
965 B
Nix
37 lines
965 B
Nix
{ lib, stdenv, fetchurl, bash, jre }:
|
|
let
|
|
mcVersion = "1.17.1";
|
|
buildNum = "97";
|
|
jar = fetchurl {
|
|
url = "https://papermc.io/api/v1/paper/${mcVersion}/${buildNum}/download";
|
|
sha256 = "sha256:0d7q6v5w872phcgkha7j5sxniqq9wqbh1jxdvyvy6d2jl74g1gzw";
|
|
};
|
|
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
|
|
'';
|
|
|
|
installPhase = ''
|
|
install -Dm444 ${jar} $out/share/papermc/papermc.jar
|
|
install -Dm555 -t $out/bin minecraft-server
|
|
'';
|
|
|
|
meta = {
|
|
description = "High-performance Minecraft Server";
|
|
homepage = "https://papermc.io/";
|
|
license = lib.licenses.gpl3Only;
|
|
platforms = lib.platforms.unix;
|
|
maintainers = with lib.maintainers; [ aaronjanse neonfuz ];
|
|
};
|
|
}
|