summary refs log tree commit diff
path: root/pkgs/os-specific/linux/setools/default.nix
blob: 6e8d9d3cf7a6f02968c22e8d6ca82fdcea26cad2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, bison, flex
, python, swig2, tcl, libsepol, libselinux, libxml2, sqlite, bzip2 }:

stdenv.mkDerivation rec {
  name = "setools-2015-02-12";

  src = fetchFromGitHub {
    owner = "TresysTechnology";
    repo = "setools3";
    rev = "f1e5b208d507171968ca4d2eeefd7980f1004a3c";
    sha256 = "02gzy2kpszhr13f0d9qfiwh2hj4201g2x366j53v5n5qz481aykd";
  };

  configureFlags = [
    "--disable-gui"
    "--with-sepol-devel=${libsepol}"
    "--with-selinux-devel=${libselinux}"
    "--with-tcl=${tcl}/lib"
  ];

  hardening_format = false;

  NIX_CFLAGS_COMPILE = "-fstack-protector-all";
  NIX_LDFLAGS = "-L${libsepol}/lib -L${libselinux}/lib";

  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;
  };
}