mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 00:12:56 +00:00
12d2821bf5
With all libcs I'm aware of, libdl is now either empty (Glibc, musl, uclibc, illumos), a symlink to libc or equivalent (Apple), or does not exist (FreeBSD, NetBSD). So explicitly linking libdl now does nothing for the former platforms, and breaks the build for the latter platforms. With this patch I've removed -ldl from all overridden linker flags for all free packages in Nixpkgs. Everything still seems to build.
43 lines
1.3 KiB
Nix
43 lines
1.3 KiB
Nix
{ lib, stdenv, fetchurl, perl, php, gd, libpng, zlib, unzip, nixosTests }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "nagios";
|
|
version = "4.4.6";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/nagios/nagios-4.x/${pname}-${version}/${pname}-${version}.tar.gz";
|
|
sha256 = "1x5hb97zbvkm73q53ydp1gwj8nnznm72q9c4rm6ny7phr995l3db";
|
|
};
|
|
|
|
patches = [ ./nagios.patch ];
|
|
nativeBuildInputs = [ unzip ];
|
|
buildInputs = [ php perl gd libpng zlib ];
|
|
|
|
configureFlags = [ "--localstatedir=/var/lib/nagios" ];
|
|
buildFlags = [ "all" ];
|
|
|
|
# Do not create /var directories
|
|
preInstall = ''
|
|
substituteInPlace Makefile --replace '$(MAKE) install-basic' ""
|
|
'';
|
|
installTargets = "install install-config";
|
|
postInstall = ''
|
|
# don't make default files use hardcoded paths to commands
|
|
sed -i 's@command_line *[^ ]*/\([^/]*\) @command_line \1 @' $out/etc/objects/commands.cfg
|
|
sed -i 's@/usr/bin/@@g' $out/etc/objects/commands.cfg
|
|
sed -i 's@/bin/@@g' $out/etc/objects/commands.cfg
|
|
'';
|
|
|
|
passthru.tests = {
|
|
inherit (nixosTests) nagios;
|
|
};
|
|
|
|
meta = {
|
|
description = "A host, service and network monitoring program";
|
|
homepage = "https://www.nagios.org/";
|
|
license = lib.licenses.gpl2;
|
|
platforms = lib.platforms.linux;
|
|
maintainers = with lib.maintainers; [ immae thoughtpolice relrod ];
|
|
};
|
|
}
|