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

36 lines
1,016 B
Nix
Raw Normal View History

2015-08-01 00:14:58 +02:00
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, bison, flex
, python, swig2, tcl, libsepol, libselinux, libxml2, sqlite, bzip2 }:
stdenv.mkDerivation rec {
2015-08-01 00:14:58 +02:00
name = "setools-2015-02-12";
2015-08-01 00:14:58 +02:00
src = fetchFromGitHub {
owner = "TresysTechnology";
repo = "setools3";
rev = "f1e5b208d507171968ca4d2eeefd7980f1004a3c";
sha256 = "02gzy2kpszhr13f0d9qfiwh2hj4201g2x366j53v5n5qz481aykd";
};
2015-08-01 00:14:58 +02:00
configureFlags = [
"--disable-gui"
"--with-sepol-devel=${libsepol}"
"--with-selinux-devel=${libselinux}"
"--with-tcl=${tcl}/lib"
];
hardeningDisable = [ "format" ];
2016-02-12 19:02:25 +01:00
2015-08-01 00:14:58 +02:00
NIX_CFLAGS_COMPILE = "-fstack-protector-all";
NIX_LDFLAGS = "-L${libsepol}/lib -L${libselinux}/lib";
2015-08-01 00:14:58 +02:00
nativeBuildInputs = [ autoreconfHook pkgconfig python swig2 bison flex ];
buildInputs = [ tcl libxml2 sqlite bzip2 ];
meta = {
description = "SELinux Tools";
homepage = http://oss.tresys.com/projects/setools/;
license = stdenv.lib.licenses.gpl2;
platforms = stdenv.lib.platforms.linux;
};
}