2018-03-14 12:25:41 +00:00
|
|
|
{ stdenv, fetchurl, pcre, pkgconfig, libsepol
|
2015-08-01 01:00:57 +01:00
|
|
|
, enablePython ? true, swig ? null, python ? null
|
2018-03-26 19:50:20 +01:00
|
|
|
, musl-fts
|
2013-06-24 07:37:33 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
assert enablePython -> swig != null && python != null;
|
|
|
|
|
|
|
|
with stdenv.lib;
|
2006-08-27 19:05:18 +01:00
|
|
|
|
2011-03-27 05:45:38 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "libselinux-${version}";
|
2018-03-14 12:25:41 +00:00
|
|
|
version = "2.7";
|
2013-02-24 12:25:53 +00:00
|
|
|
inherit (libsepol) se_release se_url;
|
2011-03-27 05:45:38 +01:00
|
|
|
|
2006-08-27 19:05:18 +01:00
|
|
|
src = fetchurl {
|
2013-02-24 12:25:53 +00:00
|
|
|
url = "${se_url}/${se_release}/libselinux-${version}.tar.gz";
|
2018-03-14 12:25:41 +00:00
|
|
|
sha256 = "0mwcq78v6ngbq06xmb9dvilpg0jnl2vs9fgrpakhmmiskdvc1znh";
|
2006-08-27 19:05:18 +01:00
|
|
|
};
|
|
|
|
|
2017-09-05 22:26:13 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ libsepol pcre ]
|
2018-03-26 19:50:20 +01:00
|
|
|
++ optionals enablePython [ swig python ]
|
|
|
|
++ optional stdenv.hostPlatform.isMusl musl-fts;
|
2011-03-27 05:45:38 +01:00
|
|
|
|
2018-03-14 12:25:41 +00: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 21:41:50 +01:00
|
|
|
|
2018-03-27 18:14:31 +01:00
|
|
|
NIX_CFLAGS_COMPILE = [ "-Wno-error" ];
|
2016-08-19 16:30:22 +01:00
|
|
|
|
2013-06-24 07:37:33 +01:00
|
|
|
postPatch = optionalString enablePython ''
|
|
|
|
sed -i -e 's|\$(LIBDIR)/libsepol.a|${libsepol}/lib/libsepol.a|' src/Makefile
|
|
|
|
'';
|
|
|
|
|
2018-03-14 12:25:41 +00:00
|
|
|
# fix install locations
|
2015-07-31 20:40:17 +01:00
|
|
|
preBuild = ''
|
|
|
|
makeFlagsArray+=("PREFIX=$out")
|
|
|
|
makeFlagsArray+=("DESTDIR=$out")
|
2018-03-14 12:25:41 +00:00
|
|
|
makeFlagsArray+=("MAN3DIR=$out/share/man/man3")
|
|
|
|
makeFlagsArray+=("MAN5DIR=$out/share/man/man5")
|
|
|
|
makeFlagsArray+=("MAN8DIR=$out/share/man/man8")
|
2018-03-20 13:52:37 +00:00
|
|
|
makeFlagsArray+=("PYSITEDIR=$out/lib/${python.libPrefix}/site-packages")
|
2013-11-28 08:58:06 +00:00
|
|
|
'';
|
|
|
|
|
2015-07-31 20:40:17 +01:00
|
|
|
installTargets = [ "install" ] ++ optional enablePython "install-pywrap";
|
|
|
|
|
|
|
|
meta = libsepol.meta // {
|
|
|
|
description = "SELinux core library";
|
2013-02-24 12:25:53 +00:00
|
|
|
};
|
2006-08-27 19:05:18 +01:00
|
|
|
}
|