nagios: enable darwin support

This commit is contained in:
Anthony Roussel 2024-05-03 20:40:22 +02:00
parent 6edec2311c
commit d4d29642b0
No known key found for this signature in database
GPG Key ID: 9DC4987B1A55E75E
2 changed files with 2 additions and 2 deletions

View File

@ -585,7 +585,7 @@ in {
mysql-backup = handleTest ./mysql/mysql-backup.nix {};
mysql-replication = handleTest ./mysql/mysql-replication.nix {};
n8n = handleTest ./n8n.nix {};
nagios = handleTest ./nagios.nix {};
nagios = handleTestOn [ "x86_64-linux" "aarch64-linux" ] ./nagios.nix {};
nar-serve = handleTest ./nar-serve.nix {};
nat.firewall = handleTest ./nat.nix { withFirewall = true; };
nat.standalone = handleTest ./nat.nix { withFirewall = false; };

View File

@ -75,7 +75,7 @@ stdenv.mkDerivation (finalAttrs: {
homepage = "https://www.nagios.org/";
changelog = "https://github.com/NagiosEnterprises/nagioscore/blob/nagios-${finalAttrs.version}/Changelog";
license = lib.licenses.gpl2;
platforms = lib.platforms.linux;
platforms = lib.platforms.unix;
mainProgram = "nagios";
maintainers = with lib.maintainers; [ immae thoughtpolice relrod anthonyroussel ];
};