mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
50 lines
1.3 KiB
Nix
50 lines
1.3 KiB
Nix
{ stdenv, fetchurl, intltool, pcre, libcap_ng, libcgroup
|
|
, libsepol, libselinux, libsemanage, setools
|
|
, python, sepolgen }:
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "policycoreutils-${version}";
|
|
version = "2.3";
|
|
inherit (libsepol) se_release se_url;
|
|
|
|
src = fetchurl {
|
|
url = "${se_url}/${se_release}/policycoreutils-${version}.tar.gz";
|
|
sha256 = "1lpwxr5hw3dwhlp2p7y8jcr18mvfcrclwd8c2idz3lmmb3pglk46";
|
|
};
|
|
|
|
preConfigure = ''
|
|
substituteInPlace po/Makefile --replace /usr/bin/install install
|
|
find . -type f -exec sed -i 's,/usr/bin/python,${python}/bin/python,' {} \;
|
|
'';
|
|
|
|
buildInputs = [ intltool pcre libcap_ng libcgroup
|
|
libsepol libselinux libsemanage setools
|
|
python sepolgen # ToDo? these are optional
|
|
];
|
|
|
|
preBuild = ''
|
|
mkdir -p "$out/lib" && cp -s "${libsepol}/lib/libsepol.a" "$out/lib"
|
|
'';
|
|
|
|
# Creation of the system-config-selinux directory is broken
|
|
preInstall = ''
|
|
mkdir -p $out/share/system-config-selinux
|
|
'';
|
|
|
|
NIX_CFLAGS_COMPILE = "-fstack-protector-all";
|
|
NIX_LDFLAGS = "-lsepol -lpcre";
|
|
|
|
makeFlags = "PREFIX=$(out) DESTDIR=$(out) LOCALEDIR=$(out)/share/locale";
|
|
|
|
patches = [ ./size_format.patch ];
|
|
|
|
patchFlags = [ "-p0" ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "SELinux policy core utilities";
|
|
license = licenses.gpl2;
|
|
inherit (libsepol.meta) homepage platforms maintainers;
|
|
};
|
|
}
|
|
|