a4e1c7df08
Sadly, policycoreutils still fails on i686-linux.
26 lines
740 B
Nix
26 lines
740 B
Nix
{ stdenv, fetchurl, libsepol, libselinux, ustr, bzip2, bison, flex, audit }:
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "libsemanage-${version}";
|
|
version = "2.3";
|
|
inherit (libsepol) se_release se_url;
|
|
|
|
src = fetchurl {
|
|
url = "${se_url}/${se_release}/libsemanage-${version}.tar.gz";
|
|
sha256 = "0jrf66df80mvjhrsbxcnb60j69pg4dh2pydy8vj8dhhiwqsrxq03";
|
|
};
|
|
|
|
makeFlags = "PREFIX=$(out) DESTDIR=$(out)";
|
|
|
|
NIX_CFLAGS_COMPILE = "-fstack-protector-all";
|
|
NIX_CFLAGS_LINK = "-lsepol";
|
|
|
|
buildInputs = [ libsepol libselinux ustr bzip2 bison flex audit ];
|
|
|
|
meta = with stdenv.lib; {
|
|
inherit (libsepol.meta) homepage platforms maintainers;
|
|
description = "Policy management tools for SELinux";
|
|
license = licenses.lgpl21;
|
|
};
|
|
}
|