70ecb218f1
Notably, Python 2 code is not be supported in this project anymore and new Python code should be written only for Python 3, which is no longer restricted to Python 3.7 (see780fb563c7
,5dfd3c4975
) https://github.com/SELinuxProject/selinux/releases/tag/20191204
40 lines
1015 B
Nix
40 lines
1015 B
Nix
{ stdenv, fetchurl, 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";
|
|
};
|
|
|
|
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 stdenv.lib; {
|
|
description = "SELinux binary policy manipulation library";
|
|
homepage = "http://userspace.selinuxproject.org";
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.phreedom ];
|
|
license = stdenv.lib.licenses.gpl2;
|
|
};
|
|
}
|