2021-11-11 16:56:28 +00:00
|
|
|
{ lib, stdenv, fetchurl, fetchpatch, buildPackages, pcre, pkg-config, libsepol
|
|
|
|
, enablePython ? !stdenv.hostPlatform.isStatic, swig ? null, python3 ? null
|
2018-05-31 16:44:17 +00:00
|
|
|
, fts
|
2013-06-24 06:37:33 +00:00
|
|
|
}:
|
|
|
|
|
2020-11-20 13:54:14 +00:00
|
|
|
assert enablePython -> swig != null && python3 != null;
|
2013-06-24 06:37:33 +00:00
|
|
|
|
2021-01-15 14:45:37 +00:00
|
|
|
with lib;
|
2006-08-27 18:05:18 +00:00
|
|
|
|
2011-03-27 04:45:38 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "libselinux";
|
2021-11-12 09:20:45 +00:00
|
|
|
version = "3.3";
|
|
|
|
inherit (libsepol) se_url;
|
2011-03-27 04:45:38 +00:00
|
|
|
|
2019-08-17 17:49:04 +00:00
|
|
|
outputs = [ "bin" "out" "dev" "man" ] ++ optional enablePython "py";
|
2018-06-21 09:48:33 +00:00
|
|
|
|
2006-08-27 18:05:18 +00:00
|
|
|
src = fetchurl {
|
2021-11-12 09:20:45 +00:00
|
|
|
url = "${se_url}/${version}/libselinux-${version}.tar.gz";
|
|
|
|
sha256 = "0mvh793g7fg6wb6zqhkdyrv80x6k84ypqwi8ii89c91xcckyxzdc";
|
2006-08-27 18:05:18 +00:00
|
|
|
};
|
|
|
|
|
2021-11-11 16:56:28 +00:00
|
|
|
patches = [
|
|
|
|
# Make it possible to disable shared builds (for pkgsStatic).
|
|
|
|
#
|
|
|
|
# We can't use fetchpatch because it processes includes/excludes
|
|
|
|
# /after/ stripping the prefix, which wouldn't work here because
|
|
|
|
# there would be no way to distinguish between
|
|
|
|
# e.g. libselinux/src/Makefile and libsepol/src/Makefile.
|
|
|
|
#
|
|
|
|
# This is a static email, so we shouldn't have to worry about
|
|
|
|
# normalizing the patch.
|
|
|
|
(fetchurl {
|
|
|
|
url = "https://lore.kernel.org/selinux/20211113141616.361640-1-hi@alyssa.is/raw";
|
|
|
|
sha256 = "16a2s2ji9049892i15yyqgp4r20hi1hij4c1s4s8law9jsx65b3n";
|
|
|
|
postFetch = ''
|
|
|
|
mv "$out" $TMPDIR/patch
|
|
|
|
${buildPackages.patchutils_0_3_3}/bin/filterdiff \
|
|
|
|
-i 'a/libselinux/*' --strip 1 <$TMPDIR/patch >"$out"
|
|
|
|
'';
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pkg-config python3 ] ++ optionals enablePython [ swig ];
|
2020-11-20 13:54:14 +00:00
|
|
|
buildInputs = [ libsepol pcre fts ] ++ optionals enablePython [ python3 ];
|
2011-03-27 04:45:38 +00: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 20:41:50 +00:00
|
|
|
|
2019-10-29 23:53:51 +00:00
|
|
|
NIX_CFLAGS_COMPILE = "-Wno-error";
|
2016-08-19 15:30:22 +00:00
|
|
|
|
2018-06-21 09:48:33 +00: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"
|
|
|
|
"SBINDIR=$(bin)/sbin"
|
|
|
|
"SHLIBDIR=$(out)/lib"
|
|
|
|
|
2021-01-15 14:45:37 +00:00
|
|
|
"LIBSEPOLA=${lib.getLib libsepol}/lib/libsepol.a"
|
2021-10-30 23:55:53 +00:00
|
|
|
"ARCH=${stdenv.hostPlatform.linuxArch}"
|
2021-11-11 16:56:28 +00:00
|
|
|
] ++ optionals stdenv.hostPlatform.isStatic [
|
|
|
|
"DISABLE_SHARED=y"
|
2021-04-10 22:12:49 +00:00
|
|
|
] ++ optionals enablePython [
|
|
|
|
"PYTHON=${python3.pythonForBuild.interpreter}"
|
|
|
|
"PYTHONLIBDIR=$(py)/${python3.sitePackages}"
|
2018-06-21 09:48:33 +00:00
|
|
|
];
|
2013-11-28 08:58:06 +00:00
|
|
|
|
2021-04-15 21:18:51 +00:00
|
|
|
postPatch = lib.optionalString stdenv.hostPlatform.isMusl ''
|
|
|
|
substituteInPlace src/procattr.c \
|
|
|
|
--replace "#include <unistd.h>" ""
|
|
|
|
'';
|
|
|
|
|
2021-04-10 22:12:49 +00:00
|
|
|
preInstall = optionalString enablePython ''
|
2020-11-20 13:54:14 +00:00
|
|
|
mkdir -p $py/${python3.sitePackages}/selinux
|
|
|
|
'';
|
|
|
|
|
2015-07-31 19:40:17 +00:00
|
|
|
installTargets = [ "install" ] ++ optional enablePython "install-pywrap";
|
|
|
|
|
2018-07-29 21:22:56 +00:00
|
|
|
meta = removeAttrs libsepol.meta ["outputsToInstall"] // {
|
2015-07-31 19:40:17 +00:00
|
|
|
description = "SELinux core library";
|
2013-02-24 12:25:53 +00:00
|
|
|
};
|
2006-08-27 18:05:18 +00:00
|
|
|
}
|