1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/os-specific/linux/libselinux/default.nix

51 lines
1.4 KiB
Nix
Raw Normal View History

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-05-31 17:44:17 +01:00
, fts
}:
assert enablePython -> swig != null && python != null;
with stdenv.lib;
stdenv.mkDerivation rec {
name = "libselinux-${version}";
2018-03-14 12:25:41 +00:00
version = "2.7";
inherit (libsepol) se_release se_url;
2018-06-21 10:48:33 +01:00
outputs = [ "bin" "out" "dev" "man" "py" ];
src = fetchurl {
url = "${se_url}/${se_release}/libselinux-${version}.tar.gz";
2018-03-14 12:25:41 +00:00
sha256 = "0mwcq78v6ngbq06xmb9dvilpg0jnl2vs9fgrpakhmmiskdvc1znh";
};
nativeBuildInputs = [ pkgconfig ] ++ optionals enablePython [ swig python ];
buildInputs = [ libsepol pcre fts ] ++ optionals enablePython [ python ];
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" ];
2018-03-27 18:14:31 +01:00
NIX_CFLAGS_COMPILE = [ "-Wno-error" ];
2018-06-21 10:48:33 +01: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"
"PYSITEDIR=$(py)/${python.sitePackages}"
"SBINDIR=$(bin)/sbin"
"SHLIBDIR=$(out)/lib"
"LIBSEPOLA=${stdenv.lib.getLib libsepol}/lib/libsepol.a"
];
2015-07-31 20:40:17 +01:00
installTargets = [ "install" ] ++ optional enablePython "install-pywrap";
meta = removeAttrs libsepol.meta ["outputsToInstall"] // {
2015-07-31 20:40:17 +01:00
description = "SELinux core library";
};
}