2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl, flex }:
|
2006-08-27 19:05:18 +01:00
|
|
|
|
2011-03-27 05:45:26 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "libsepol";
|
2020-11-20 13:54:14 +00:00
|
|
|
version = "3.0";
|
|
|
|
se_release = "20191204";
|
2019-08-17 18:48:37 +01:00
|
|
|
se_url = "https://github.com/SELinuxProject/selinux/releases/download";
|
2011-03-27 05:45:26 +01:00
|
|
|
|
2018-06-21 10:40:31 +01:00
|
|
|
outputs = [ "bin" "out" "dev" "man" ];
|
|
|
|
|
2006-08-27 19:05:18 +01:00
|
|
|
src = fetchurl {
|
2013-02-24 12:25:53 +00:00
|
|
|
url = "${se_url}/${se_release}/libsepol-${version}.tar.gz";
|
2020-11-20 13:54:14 +00:00
|
|
|
sha256 = "0ygb6dh5lng91xs6xiqf5v0nxa68qmjc787p0s5h9w89364f2yjv";
|
2006-08-27 19:05:18 +01:00
|
|
|
};
|
2011-03-27 05:45:26 +01:00
|
|
|
|
2021-05-02 19:23:08 +01:00
|
|
|
postPatch = lib.optionalString stdenv.hostPlatform.isStatic ''
|
|
|
|
substituteInPlace src/Makefile --replace 'all: $(LIBA) $(LIBSO)' 'all: $(LIBA)'
|
|
|
|
sed -i $'/^\t.*LIBSO/d' src/Makefile
|
|
|
|
'';
|
|
|
|
|
2015-07-31 20:40:00 +01:00
|
|
|
nativeBuildInputs = [ flex ];
|
2013-02-24 12:25:53 +00:00
|
|
|
|
2018-06-21 10:40:31 +01:00
|
|
|
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"
|
|
|
|
];
|
2013-11-28 08:58:06 +00:00
|
|
|
|
2019-10-29 23:53:51 +00:00
|
|
|
NIX_CFLAGS_COMPILE = "-Wno-error";
|
2017-11-12 08:39:50 +00:00
|
|
|
|
2014-01-09 20:44:21 +00:00
|
|
|
passthru = { inherit se_release se_url; };
|
2013-02-24 12:25:53 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-06-21 10:40:31 +01:00
|
|
|
description = "SELinux binary policy manipulation library";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://userspace.selinuxproject.org";
|
2013-02-24 12:25:53 +00:00
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.phreedom ];
|
2021-05-02 13:00:00 +01:00
|
|
|
license = lib.licenses.gpl2Plus;
|
2013-02-24 12:25:53 +00:00
|
|
|
};
|
2006-08-27 19:05:18 +01:00
|
|
|
}
|