audit: 2.9.1 -> 2.9.2

This commit is contained in:
William A. Kennington III
2015-05-29 10:29:11 -07:00
parent b1e4371a1c
commit 7e126ac83e
3 changed files with 54 additions and 16 deletions
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, libsepol, libselinux, ustr, bzip2, bison, flex, audit }:
{ stdenv, fetchurl, libsepol, libselinux, ustr, bzip2, bison, flex, libaudit }:
stdenv.mkDerivation rec {
name = "libsemanage-${version}";
@@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
NIX_CFLAGS_COMPILE = "-fstack-protector-all";
NIX_CFLAGS_LINK = "-lsepol";
buildInputs = [ libsepol libselinux ustr bzip2 bison flex audit ];
buildInputs = [ libsepol libselinux ustr bzip2 bison flex libaudit ];
meta = with stdenv.lib; {
inherit (libsepol.meta) homepage platforms maintainers;