Skip to content

Commit

Permalink
Merge pull request #68728 from d-goldin/fix_setools_build
Browse files Browse the repository at this point in the history
setools: 4.2.0 -> 4.2.2 and fixing build
  • Loading branch information
worldofpeace authored Sep 17, 2019
2 parents 8f3421e + afc4110 commit 83686eb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pkgs/os-specific/linux/setools/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, bison, flex, python3 , swig
{ stdenv, fetchFromGitHub, python3
, libsepol, libselinux, checkpolicy
, withGraphics ? false
}:
Expand All @@ -8,16 +8,16 @@ with python3.pkgs;

buildPythonApplication rec {
pname = "setools";
version = "4.2.0";
version = "4.2.2";

src = fetchFromGitHub {
owner = "SELinuxProject";
repo = pname;
rev = version;
sha256 = "1bjwcvr6rjx79cdcvaxn68bdrnl4f2a8gnnqsngdxhkhwpddksjy";
sha256 = "18kklv26dwm2fdjjzfflvxsq83b2svnwf4g18xq7wsfsri121a90";
};

nativeBuildInputs = [ bison flex swig ];
nativeBuildInputs = [ cython ];
buildInputs = [ libsepol ];
propagatedBuildInputs = [ enum34 libselinux networkx ]
++ optionals withGraphics [ pyqt5 ];
Expand Down

0 comments on commit 83686eb

Please sign in to comment.