mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 00:43:56 -05:00
mkPackages 2.0
This commit is contained in:
parent
6cb2c87bbc
commit
36176f647c
3 changed files with 39 additions and 7 deletions
|
|
@ -1,46 +0,0 @@
|
|||
{
|
||||
lib,
|
||||
runCommandNoCC,
|
||||
makeBinaryWrapper,
|
||||
fetchurl,
|
||||
jre,
|
||||
}:
|
||||
let
|
||||
pname = "papermc";
|
||||
version = "1.20.1.83";
|
||||
in
|
||||
runCommandNoCC "papermc"
|
||||
{
|
||||
inherit pname version;
|
||||
|
||||
src =
|
||||
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";
|
||||
hash = "sha256-HQpc3MOXa1wkXqgm9ciQj04FUIyuupnYiu+2RZ/sXE4=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ makeBinaryWrapper ];
|
||||
|
||||
meta = {
|
||||
description = "High-performance Minecraft Server";
|
||||
homepage = "https://papermc.io/";
|
||||
sourceProvenance = with lib.sourceTypes; [ binaryBytecode ];
|
||||
license = lib.licenses.gpl3Only;
|
||||
platforms = lib.platforms.unix;
|
||||
maintainers = with lib.maintainers; [
|
||||
aaronjanse
|
||||
neonfuz
|
||||
];
|
||||
mainProgram = "minecraft-server";
|
||||
};
|
||||
}
|
||||
''
|
||||
install -D $src $out/share/papermc/papermc.jar
|
||||
makeWrapper ${lib.getExe jre} "$out/bin/minecraft-server" \
|
||||
--append-flags "-jar $out/share/papermc/papermc.jar nogui"
|
||||
|
||||
''
|
||||
Loading…
Add table
Add a link
Reference in a new issue