2018-03-14 13:25:41 +01:00
|
|
|
{ stdenv, fetchurl, pcre, pkgconfig, libsepol
|
2015-08-01 02:00:57 +02:00
|
|
|
, enablePython ? true, swig ? null, python ? null
|
2018-05-31 18:44:17 +02:00
|
|
|
, fts
|
2013-06-24 08:37:33 +02:00
|
|
|
}:
|
|
|
|
|
|
|
|
assert enablePython -> swig != null && python != null;
|
|
|
|
|
|
|
|
with stdenv.lib;
|
2006-08-27 20:05:18 +02:00
|
|
|
|
2011-03-27 06:45:38 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "libselinux";
|
2019-08-17 19:49:04 +02:00
|
|
|
version = "2.9";
|
2013-02-24 13:25:53 +01:00
|
|
|
inherit (libsepol) se_release se_url;
|
2011-03-27 06:45:38 +02:00
|
|
|
|
2019-08-17 19:49:04 +02:00
|
|
|
outputs = [ "bin" "out" "dev" "man" ] ++ optional enablePython "py";
|
2018-06-21 11:48:33 +02:00
|
|
|
|
2006-08-27 20:05:18 +02:00
|
|
|
src = fetchurl {
|
2013-02-24 13:25:53 +01:00
|
|
|
url = "${se_url}/${se_release}/libselinux-${version}.tar.gz";
|
2019-08-17 19:49:04 +02:00
|
|
|
sha256 = "14r69mgmz7najf9wbizvp68q56mqx4yjbkxjlbcqg5a47s3wik0v";
|
2006-08-27 20:05:18 +02:00
|
|
|
};
|
|
|
|
|
2018-12-09 15:32:38 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ] ++ optionals enablePython [ swig python ];
|
|
|
|
buildInputs = [ libsepol pcre fts ] ++ optionals enablePython [ python ];
|
2011-03-27 06:45:38 +02:00
|
|
|
|
2018-03-14 13:25:41 +01:00
|
|
|
# drop fortify here since package uses it by default, leading to compile error:
|
|
|
|
# command-line>:0:0: error: "_FORTIFY_SOURCE" redefined [-Werror]
|
|
|
|
hardeningDisable = [ "fortify" ];
|
2016-10-18 22:41:50 +02:00
|
|
|
|
2019-10-30 00:53:51 +01:00
|
|
|
NIX_CFLAGS_COMPILE = "-Wno-error";
|
2016-08-19 17:30:22 +02:00
|
|
|
|
2018-06-21 11:48:33 +02:00
|
|
|
makeFlags = [
|
|
|
|
"PREFIX=$(out)"
|
|
|
|
"INCDIR=$(dev)/include/selinux"
|
|
|
|
"INCLUDEDIR=$(dev)/include"
|
|
|
|
"MAN3DIR=$(man)/share/man/man3"
|
|
|
|
"MAN5DIR=$(man)/share/man/man5"
|
|
|
|
"MAN8DIR=$(man)/share/man/man8"
|
2020-01-13 05:30:10 +01:00
|
|
|
"PYTHON=${python.pythonForBuild}/bin/python"
|
2019-08-17 19:49:04 +02:00
|
|
|
"PYTHONLIBDIR=$(py)/${python.sitePackages}"
|
2018-06-21 11:48:33 +02:00
|
|
|
"SBINDIR=$(bin)/sbin"
|
|
|
|
"SHLIBDIR=$(out)/lib"
|
|
|
|
|
|
|
|
"LIBSEPOLA=${stdenv.lib.getLib libsepol}/lib/libsepol.a"
|
|
|
|
];
|
2013-11-28 09:58:06 +01:00
|
|
|
|
2015-07-31 21:40:17 +02:00
|
|
|
installTargets = [ "install" ] ++ optional enablePython "install-pywrap";
|
|
|
|
|
2018-07-29 23:22:56 +02:00
|
|
|
meta = removeAttrs libsepol.meta ["outputsToInstall"] // {
|
2015-07-31 21:40:17 +02:00
|
|
|
description = "SELinux core library";
|
2013-02-24 13:25:53 +01:00
|
|
|
};
|
2006-08-27 20:05:18 +02:00
|
|
|
}
|