mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-28 00:24:18 +00:00
4f0dadbf38
After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
131 lines
3.3 KiB
Nix
131 lines
3.3 KiB
Nix
{
|
|
stdenv,
|
|
runCommand,
|
|
lib,
|
|
fetchFromGitHub,
|
|
cmake,
|
|
flex,
|
|
bison,
|
|
systemd,
|
|
boost,
|
|
openssl,
|
|
patchelf,
|
|
mariadb-connector-c,
|
|
postgresql,
|
|
zlib,
|
|
tzdata,
|
|
# Databases
|
|
withMysql ? true,
|
|
withPostgresql ? false,
|
|
# Features
|
|
withChecker ? true,
|
|
withCompat ? false,
|
|
withLivestatus ? false,
|
|
withNotification ? true,
|
|
withPerfdata ? true,
|
|
withIcingadb ? true,
|
|
nameSuffix ? "",
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "icinga2${nameSuffix}";
|
|
version = "2.14.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "icinga";
|
|
repo = "icinga2";
|
|
rev = "v${version}";
|
|
hash = "sha256-QXe/+yQlyyOa78eEiudDni08SCUP3nhTYVpbmVUVKA8=";
|
|
};
|
|
|
|
patches = [
|
|
./etc-icinga2.patch # Makes /etc/icinga2 relative to / instead of the store path
|
|
./no-systemd-service.patch # Prevent systemd service from being written to /usr
|
|
./no-var-directories.patch # Prevent /var directories from being created
|
|
];
|
|
|
|
cmakeFlags =
|
|
let
|
|
mkFeatureFlag = label: value: "-DICINGA2_WITH_${label}=${if value then "ON" else "OFF"}";
|
|
in
|
|
[
|
|
# Paths
|
|
"-DCMAKE_INSTALL_SYSCONFDIR=etc"
|
|
"-DCMAKE_INSTALL_LOCALSTATEDIR=/var"
|
|
"-DCMAKE_INSTALL_FULL_SBINDIR=bin"
|
|
"-DICINGA2_RUNDIR=/run"
|
|
"-DMYSQL_INCLUDE_DIR=${mariadb-connector-c.dev}/include/mariadb"
|
|
"-DMYSQL_LIB=${mariadb-connector-c.out}/lib/mariadb/libmysqlclient.a"
|
|
"-DICINGA2_PLUGINDIR=bin"
|
|
"-DICINGA2_LTO_BUILD=yes"
|
|
# Features
|
|
(mkFeatureFlag "MYSQL" withMysql)
|
|
(mkFeatureFlag "PGSQL" withPostgresql)
|
|
(mkFeatureFlag "CHECKER" withChecker)
|
|
(mkFeatureFlag "COMPAT" withCompat)
|
|
(mkFeatureFlag "LIVESTATUS" withLivestatus)
|
|
(mkFeatureFlag "NOTIFICATION" withNotification)
|
|
(mkFeatureFlag "PERFDATA" withPerfdata)
|
|
(mkFeatureFlag "ICINGADB" withIcingadb)
|
|
# Misc.
|
|
"-DICINGA2_USER=icinga2"
|
|
"-DICINGA2_GROUP=icinga2"
|
|
"-DICINGA2_GIT_VERSION_INFO=OFF"
|
|
"-DUSE_SYSTEMD=ON"
|
|
];
|
|
|
|
outputs = [
|
|
"out"
|
|
"doc"
|
|
];
|
|
|
|
buildInputs = [
|
|
boost
|
|
openssl
|
|
systemd
|
|
] ++ lib.optional withPostgresql postgresql;
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
flex
|
|
bison
|
|
patchelf
|
|
];
|
|
|
|
doCheck = true;
|
|
nativeCheckInputs = [ tzdata ]; # legacytimeperiod/dst needs this
|
|
|
|
postFixup = ''
|
|
rm -r $out/etc/logrotate.d $out/etc/sysconfig $out/lib/icinga2/prepare-dirs
|
|
|
|
# Fix hardcoded paths
|
|
sed -i 's:/usr/bin/::g' $out/etc/icinga2/scripts/*
|
|
|
|
# Get rid of sbin
|
|
sed -i 's/sbin/bin/g' $out/lib/icinga2/safe-reload
|
|
rm $out/sbin
|
|
|
|
${lib.optionalString withMysql ''
|
|
# Add dependencies of the MySQL shim to the shared library
|
|
patchelf --add-needed ${zlib.out}/lib/libz.so $(readlink -f $out/lib/icinga2/libmysql_shim.so)
|
|
|
|
# Make Icinga find the MySQL shim
|
|
icinga2Bin=$out/lib/icinga2/sbin/icinga2
|
|
patchelf --set-rpath $out/lib/icinga2:$(patchelf --print-rpath $icinga2Bin) $icinga2Bin
|
|
''}
|
|
'';
|
|
|
|
vim = runCommand "vim-icinga2-${version}" { pname = "vim-icinga2"; } ''
|
|
mkdir -p $out/share/vim-plugins
|
|
cp -r "${src}/tools/syntax/vim" $out/share/vim-plugins/icinga2
|
|
'';
|
|
|
|
meta = {
|
|
description = "Open source monitoring system";
|
|
homepage = "https://www.icinga.com";
|
|
license = lib.licenses.gpl2Plus;
|
|
platforms = lib.platforms.linux;
|
|
maintainers = lib.teams.helsinki-systems.members;
|
|
};
|
|
}
|