Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
60 lines
1.3 KiB
Nix
60 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
flex,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libsepol";
|
|
version = "3.8.1";
|
|
se_url = "https://github.com/SELinuxProject/selinux/releases/download";
|
|
|
|
outputs = [
|
|
"bin"
|
|
"out"
|
|
"dev"
|
|
"man"
|
|
];
|
|
|
|
src = fetchurl {
|
|
url = "${se_url}/${version}/libsepol-${version}.tar.gz";
|
|
sha256 = "sha256-DnhwUwX5VavUwGVNN6VHfuJjSat0254rA6eGiJeuHd8=";
|
|
};
|
|
|
|
postPatch = lib.optionalString stdenv.hostPlatform.isStatic ''
|
|
substituteInPlace src/Makefile --replace 'all: $(LIBA) $(LIBSO)' 'all: $(LIBA)'
|
|
sed -i $'/^\t.*LIBSO/d' src/Makefile
|
|
'';
|
|
|
|
nativeBuildInputs = [ flex ];
|
|
|
|
makeFlags = [
|
|
"PREFIX=$(out)"
|
|
"BINDIR=$(bin)/bin"
|
|
"INCDIR=$(dev)/include/sepol"
|
|
"INCLUDEDIR=$(dev)/include"
|
|
"MAN3DIR=$(man)/share/man/man3"
|
|
"MAN8DIR=$(man)/share/man/man8"
|
|
"SHLIBDIR=$(out)/lib"
|
|
];
|
|
|
|
env.NIX_CFLAGS_COMPILE = "-Wno-error";
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
passthru = { inherit se_url; };
|
|
|
|
meta = with lib; {
|
|
description = "SELinux binary policy manipulation library";
|
|
homepage = "http://userspace.selinuxproject.org";
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [
|
|
RossComputerGuy
|
|
numinit
|
|
];
|
|
license = lib.licenses.gpl2Plus;
|
|
pkgConfigModules = [ "libselinux" ];
|
|
};
|
|
}
|