mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 14:11:36 +00:00
a9547c90ea
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/audit/versions. These checks were done: - built on NixOS - Warning: no invocation of /nix/store/z8k58mpjfb5yrmcscbz3ym983chbqmsn-audit-2.8.4-bin/bin/aulast had a zero exit code or showed the expected version - Warning: no invocation of /nix/store/z8k58mpjfb5yrmcscbz3ym983chbqmsn-audit-2.8.4-bin/bin/aulastlog had a zero exit code or showed the expected version - /nix/store/z8k58mpjfb5yrmcscbz3ym983chbqmsn-audit-2.8.4-bin/bin/ausyscall passed the binary check. - /nix/store/z8k58mpjfb5yrmcscbz3ym983chbqmsn-audit-2.8.4-bin/bin/auvirt passed the binary check. - /nix/store/z8k58mpjfb5yrmcscbz3ym983chbqmsn-audit-2.8.4-bin/bin/audisp-remote passed the binary check. - Warning: no invocation of /nix/store/z8k58mpjfb5yrmcscbz3ym983chbqmsn-audit-2.8.4-bin/bin/audispd had a zero exit code or showed the expected version - Warning: no invocation of /nix/store/z8k58mpjfb5yrmcscbz3ym983chbqmsn-audit-2.8.4-bin/bin/auditctl had a zero exit code or showed the expected version - Warning: no invocation of /nix/store/z8k58mpjfb5yrmcscbz3ym983chbqmsn-audit-2.8.4-bin/bin/auditd had a zero exit code or showed the expected version - Warning: no invocation of /nix/store/z8k58mpjfb5yrmcscbz3ym983chbqmsn-audit-2.8.4-bin/bin/augenrules had a zero exit code or showed the expected version - /nix/store/z8k58mpjfb5yrmcscbz3ym983chbqmsn-audit-2.8.4-bin/bin/aureport passed the binary check. - /nix/store/z8k58mpjfb5yrmcscbz3ym983chbqmsn-audit-2.8.4-bin/bin/ausearch passed the binary check. - Warning: no invocation of /nix/store/z8k58mpjfb5yrmcscbz3ym983chbqmsn-audit-2.8.4-bin/bin/autrace had a zero exit code or showed the expected version - 5 of 12 passed binary check by having a zero exit code. - 2 of 12 passed binary check by having the new version present in output. - found 2.8.4 with grep in /nix/store/z8k58mpjfb5yrmcscbz3ym983chbqmsn-audit-2.8.4-bin - directory tree listing: https://gist.github.com/8d6dcaf4f506959d1a86eef7beb7a558 - du listing: https://gist.github.com/c275dcc78169bdf2e405337bca948365
54 lines
1.8 KiB
Nix
54 lines
1.8 KiB
Nix
{
|
|
stdenv, buildPackages, fetchurl, fetchpatch,
|
|
enablePython ? false, python ? null,
|
|
}:
|
|
|
|
assert enablePython -> python != null;
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "audit-2.8.4";
|
|
|
|
src = fetchurl {
|
|
url = "http://people.redhat.com/sgrubb/audit/${name}.tar.gz";
|
|
sha256 = "0f4ci6ffznnmgblwgv7ich9mjfk3p6y5l6m6h3chhmzw156nj454";
|
|
};
|
|
|
|
outputs = [ "bin" "dev" "out" "man" ];
|
|
|
|
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
|
buildInputs = stdenv.lib.optional enablePython python;
|
|
|
|
configureFlags = [
|
|
# z/OS plugin is not useful on Linux,
|
|
# and pulls in an extra openldap dependency otherwise
|
|
"--disable-zos-remote"
|
|
(if enablePython then "--with-python" else "--without-python")
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
patches = stdenv.lib.optional stdenv.hostPlatform.isMusl [
|
|
(fetchpatch {
|
|
url = "https://git.alpinelinux.org/cgit/aports/plain/main/audit/0002-auparse-remove-use-of-rawmemchr.patch?id=3e57180fdf3f90c30a25aea44f57846efc93a696";
|
|
name = "0002-auparse-remove-use-of-rawmemchr.patch";
|
|
sha256 = "1caaqbfgb2rq3ria5bz4n8x30ihgihln6w9w9a46k62ba0wh9rkz";
|
|
})
|
|
(fetchpatch {
|
|
url = "https://git.alpinelinux.org/cgit/aports/plain/main/audit/0003-all-get-rid-of-strndupa.patch?id=3e57180fdf3f90c30a25aea44f57846efc93a696";
|
|
name = "0003-all-get-rid-of-strndupa.patch";
|
|
sha256 = "1ddrm6a0ijrf7caw1wpw2kkbjp2lkxkmc16v51j5j7dvdalc6591";
|
|
})
|
|
];
|
|
|
|
prePatch = ''
|
|
sed -i 's,#include <sys/poll.h>,#include <poll.h>\n#include <limits.h>,' audisp/audispd.c
|
|
'';
|
|
meta = {
|
|
description = "Audit Library";
|
|
homepage = http://people.redhat.com/sgrubb/audit/;
|
|
license = stdenv.lib.licenses.gpl2;
|
|
platforms = stdenv.lib.platforms.linux;
|
|
maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
|
|
};
|
|
}
|