purpur: init at 1.17.1r1428

Update pkgs/games/purpur/default.nix

Co-authored-by: Ivv <41924494+IvarWithoutBones@users.noreply.github.com>

Update pkgs/games/purpur/default.nix

Co-authored-by: Ivv <41924494+IvarWithoutBones@users.noreply.github.com>

Update pkgs/games/purpur/default.nix

Co-authored-by: Ivv <41924494+IvarWithoutBones@users.noreply.github.com>

Update pkgs/games/purpur/default.nix

Co-authored-by: Ivv <41924494+IvarWithoutBones@users.noreply.github.com>

fix trailing white space

purpur: 1.17.1r1428 -> 1.18.1r1522

add make wrapper
This commit is contained in:
Joel 2021-12-11 20:42:56 +10:00
parent be3f2d7f5d
commit e54ce2616e
No known key found for this signature in database
GPG key ID: 18550BD205E9EF64
2 changed files with 43 additions and 0 deletions

View file

@ -0,0 +1,41 @@
{ lib, stdenv, fetchurl, nixosTests, jre_headless, makeWrapper }:
stdenv.mkDerivation rec {
pname = "purpur";
version = "1.18.1r1522";
src = fetchurl {
url = "https://api.purpurmc.org/v2/purpur/${builtins.replaceStrings [ "r" ] [ "/" ] version}/download";
sha256 = "1060fsfcw6m30d47wla1vsnmc4czyla6m8wf91ws095hbvc22qsm";
};
nativeBuildInputs = [ makeWrapper ];
preferLocalBuild = true;
installPhase = ''
mkdir -p $out/bin $out/lib/minecraft
cp -v $src $out/lib/minecraft/server.jar
makeWrapper ${jre_headless}/bin/java $out/bin/minecraft-server \
--add-flags "-jar $out/lib/minecraft/server.jar nogui"
'';
dontUnpack = true;
passthru = {
tests = { inherit (nixosTests) minecraft-server; };
};
meta = with lib; {
description = "A drop-in replacement for Minecraft Paper servers";
longDescription = ''
Purpur is a drop-in replacement for Minecraft Paper servers designed for configurability, new fun and exciting
gameplay features, and performance built on top of Airplane.
'';
homepage = "https://purpurmc.org/";
license = licenses.mit;
platforms = platforms.unix;
maintainers = with maintainers; [ jyooru ];
};
}

View file

@ -27756,6 +27756,8 @@ with pkgs;
purple-facebook = callPackage ../applications/networking/instant-messengers/pidgin-plugins/purple-facebook { };
purpur = callPackage ../games/purpur { };
pikopixel = callPackage ../applications/graphics/pikopixel { };
pithos = callPackage ../applications/audio/pithos {