nagios: fix build

The compiler complains about dl* function missing, this commit adds the
necessary flag to pass to gcc to make it build correctly
This commit is contained in:
Ismaël Bouya
2020-09-10 15:37:13 +02:00
parent a4a1c016a3
commit 213623e291
2 changed files with 8 additions and 1 deletions
+2 -1
View File
@@ -14,6 +14,7 @@ stdenv.mkDerivation rec {
configureFlags = [ "--localstatedir=/var/lib/nagios" ];
buildFlags = [ "all" ];
CFLAGS = "-ldl";
# Do not create /var directories
preInstall = ''
@@ -36,6 +37,6 @@ stdenv.mkDerivation rec {
homepage = "https://www.nagios.org/";
license = stdenv.lib.licenses.gpl2;
platforms = stdenv.lib.platforms.linux;
maintainers = with stdenv.lib.maintainers; [ thoughtpolice relrod ];
maintainers = with stdenv.lib.maintainers; [ immae thoughtpolice relrod ];
};
}