nixpkgs/pkgs/tools/games/minecraft/minecraft-server-hibernation/default.nix
stuebinm ff1a94e523 treewide: add meta.mainProgram to packages with a single binary
The nixpkgs-unstable channel's programs.sqlite was used to identify
packages producing exactly one binary, and these automatically added
to their package definitions wherever possible.
2024-03-19 03:14:51 +01:00

38 lines
910 B
Nix

{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "minecraft-server-hibernation";
version = "2.5.0";
src = fetchFromGitHub {
owner = "gekware";
repo = pname;
rev = "v${version}";
hash = "sha256-b6LeqjIraIasHBpaVgy8esl4NV8rdBrfO7ewgeIocS8=";
};
vendorHash = null;
ldflags = [ "-s" "-w" ];
checkFlags =
let
skippedTests = [
# Disable tests requiring network access
"Test_getPing"
"Test_getReqType"
"Test_QueryBasic"
"Test_QueryFull"
];
in
[ "-skip" "${builtins.concatStringsSep "|" skippedTests}" ];
meta = with lib; {
description = "Autostart and stop minecraft-server when players join/leave";
mainProgram = "msh";
homepage = "https://github.com/gekware/minecraft-server-hibernation";
license = licenses.gpl3Only;
maintainers = with maintainers; [ squarepear ];
};
}