linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / openbsm / default.nix
blob269b0138091b49ae7095117d3b67a4fbbcee4fa5
1 { stdenv, fetchFromGitHub, lib }:
3 stdenv.mkDerivation rec {
4   pname = "openbsm";
5   version = "1.1";
7   src = fetchFromGitHub {
8     owner = pname;
9     repo = pname;
10     rev = lib.toUpper (builtins.replaceStrings ["." "-"] ["_" "_"] "${pname}-${version}");
11     sha256 = "0b98359hd8mm585sh145ss828pg2y8vgz38lqrb7nypapiyqdnd1";
12   };
14   patches = lib.optional stdenv.isDarwin [ ./bsm-add-audit_token_to_pid.patch ];
16   configureFlags = [ "ac_cv_file__usr_include_mach_audit_triggers_defs=no" ];
18   meta = {
19     description = "An implementation of Sun's Basic Security Module (BSM) security audit API and file format";
20     homepage = "http://www.openbsm.org/";
21     platforms = lib.platforms.unix;
22     maintainers = with lib.maintainers; [ matthewbauer ];
23     license = lib.licenses.bsd2;
24   };