33472c371d
Fixes build failure against upstream gcc (defaults -fno-common)
58 lines
1.7 KiB
Nix
58 lines
1.7 KiB
Nix
{ lib, stdenv, fetchurl, fetchpatch, flex }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libsepol";
|
|
version = "3.0";
|
|
se_release = "20191204";
|
|
se_url = "https://github.com/SELinuxProject/selinux/releases/download";
|
|
|
|
outputs = [ "bin" "out" "dev" "man" ];
|
|
|
|
src = fetchurl {
|
|
url = "${se_url}/${se_release}/libsepol-${version}.tar.gz";
|
|
sha256 = "0ygb6dh5lng91xs6xiqf5v0nxa68qmjc787p0s5h9w89364f2yjv";
|
|
};
|
|
|
|
patches = [
|
|
# upstream build fix against -fno-common compilers like >=gcc-10
|
|
(fetchpatch {
|
|
url = "https://github.com/SELinuxProject/selinux/commit/a96e8c59ecac84096d870b42701a504791a8cc8c.patch";
|
|
sha256 = "0aybv4kzbhx8xq6s82dsh4ib76k59qzh2bgxmk44iq5cjnqn5rd6";
|
|
stripLen = 1;
|
|
})
|
|
(fetchpatch {
|
|
url = "https://github.com/SELinuxProject/selinux/commit/3d32fc24d6aff360a538c63dad08ca5c957551b0.patch";
|
|
sha256 = "1mphwdlj4d6mwmsp5xkpf6ci4rxhgbi3fm79d08h4jbzxaf4wny4";
|
|
stripLen = 1;
|
|
})
|
|
];
|
|
|
|
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"
|
|
];
|
|
|
|
NIX_CFLAGS_COMPILE = "-Wno-error";
|
|
|
|
passthru = { inherit se_release se_url; };
|
|
|
|
meta = with lib; {
|
|
description = "SELinux binary policy manipulation library";
|
|
homepage = "http://userspace.selinuxproject.org";
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.phreedom ];
|
|
license = lib.licenses.gpl2Plus;
|
|
};
|
|
}
|