summary refs log tree commit diff
path: root/pkgs/tools/games/minecraft/minecraft-server-hibernation/default.nix
blob: 4e39edd83efa88e6215229a4bbbcc49f657f51eb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ lib, buildGoModule, fetchFromGitHub }:

buildGoModule rec {
  pname = "minecraft-server-hibernation";
  version = "2.4.10";

  src = fetchFromGitHub {
    owner = "gekware";
    repo = pname;
    rev = "v${version}";
    sha256 = "sha256-hflPVO+gqHr0jDrhWzd7t/E6WsswiMKMHCkTUK4E05k=";
  };

  vendorHash = "sha256-W6P7wz1FGL6Os1zmmqWJ7/sO8zizfnwg+TMiFWGHIOM=";

  ldflags = [ "-s" "-w" ];

  meta = with lib; {
    description = "Autostart and stop minecraft-server when players join/leave";
    homepage = "https://github.com/gekware/minecraft-server-hibernation";
    license = licenses.gpl3Only;
    platforms = platforms.linux;
    maintainers = with maintainers; [ squarepear ];
  };
}