nixpkgs/pkgs/os-specific/linux/libsepol/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

47 lines
1.2 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, fetchpatch, flex }:
stdenv.mkDerivation rec {
pname = "libsepol";
2023-12-16 11:17:59 +00:00
version = "3.6";
2019-08-17 17:48:37 +00:00
se_url = "https://github.com/SELinuxProject/selinux/releases/download";
2018-06-21 09:40:31 +00:00
outputs = [ "bin" "out" "dev" "man" ];
src = fetchurl {
url = "${se_url}/${version}/libsepol-${version}.tar.gz";
2023-12-16 11:17:59 +00:00
sha256 = "sha256-ydxYXqlJA9eE1ZfIYc1dzmRZFo+V4isxoOqxzdgAl1o=";
};
2021-05-02 18:23:08 +00: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 19:40:00 +00:00
nativeBuildInputs = [ flex ];
2018-06-21 09:40:31 +00: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"
];
env.NIX_CFLAGS_COMPILE = "-Wno-error";
enableParallelBuilding = true;
passthru = { inherit se_url; };
meta = with lib; {
2018-06-21 09:40:31 +00:00
description = "SELinux binary policy manipulation library";
homepage = "http://userspace.selinuxproject.org";
platforms = platforms.linux;
2021-12-18 09:25:46 +00:00
maintainers = [ ];
2021-05-02 12:00:00 +00:00
license = lib.licenses.gpl2Plus;
pkgConfigModules = [ "libselinux" ];
};
}