From 4d9a4aa3f15b3b2702901abb07b4d4e650ceaab0 Mon Sep 17 00:00:00 2001 From: Matthew Bauer Date: Sat, 22 Jun 2019 12:03:58 -0400 Subject: [PATCH] =?UTF-8?q?openbsm:=20don=E2=80=99t=20check=20for=20/usr/i?= =?UTF-8?q?nclude/mach/audit=5Ftriggers.defs?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Users with CLT installed in /usr/include have this, but it we don’t have all of the headers needed in the stdenv. Fixes #46429 --- pkgs/development/libraries/openbsm/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/libraries/openbsm/default.nix b/pkgs/development/libraries/openbsm/default.nix index 13666542528..2b2fc3ff4d5 100644 --- a/pkgs/development/libraries/openbsm/default.nix +++ b/pkgs/development/libraries/openbsm/default.nix @@ -14,6 +14,8 @@ stdenv.mkDerivation rec { patches = lib.optional stdenv.isDarwin [ ./bsm-add-audit_token_to_pid.patch ]; + configureFlags = [ "ac_cv_file__usr_include_mach_audit_triggers_defs=no" ]; + meta = { homepage = http://www.openbsm.org/; platforms = lib.platforms.unix;