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