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

34 lines
792 B
Nix
Raw Normal View History

2015-07-31 19:40:46 +00:00
{ stdenv, fetchurl, bison, flex, libsepol }:
2015-07-31 19:40:46 +00:00
stdenv.mkDerivation rec {
name = "checkpolicy-${version}";
2015-07-31 19:40:46 +00:00
version = "2.4";
inherit (libsepol) se_release se_url;
src = fetchurl {
url = "${se_url}/${se_release}/checkpolicy-${version}.tar.gz";
2015-07-31 19:40:46 +00:00
sha256 = "1m5wjm43lzp6bld8higsvdm2dkddydihhwv9qw2w9r4dm0largcv";
};
# Don't build tests
postPatch = ''
sed '/-C test/d' -i Makefile
sed '1i#include <ctype.h>' -i checkpolicy.c
'';
2015-07-31 19:40:46 +00:00
nativeBuildInputs = [ bison flex ];
buildInputs = [ libsepol ];
2015-07-31 20:02:41 +00:00
NIX_CFLAGS_COMPILE = "-fstack-protector-all";
preBuild = ''
2015-07-31 19:40:46 +00:00
makeFlagsArray+=("LEX=flex")
makeFlagsArray+=("LIBDIR=${libsepol}/lib")
makeFlagsArray+=("PREFIX=$out")
'';
2015-07-31 19:40:46 +00:00
meta = libsepol.meta // {
description = "SELinux policy compiler";
};
}