Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 78054a581c0f
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 4d9a4aa3f15b
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Jun 22, 2019

  1. openbsm: don’t check for /usr/include/mach/audit_triggers.defs

    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
    matthewbauer committed Jun 22, 2019
    Copy the full SHA
    4d9a4aa View commit details
Showing with 2 additions and 0 deletions.
  1. +2 −0 pkgs/development/libraries/openbsm/default.nix
2 changes: 2 additions & 0 deletions pkgs/development/libraries/openbsm/default.nix
Original file line number Diff line number Diff line change
@@ -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;