summaryrefslogtreecommitdiffstats
path: root/pkgs/os-specific
diff options
context:
space:
mode:
authorworldofpeace <worldofpeace@protonmail.ch>2019-09-17 07:44:40 -0400
committerGitHub <noreply@github.com>2019-09-17 07:44:40 -0400
commit83686eb1fbab85a8631e28ae9c2517deb2380a80 (patch)
tree42e3cb81496b41b16244f09bfdf2ce0202cc777f /pkgs/os-specific
parent8f3421ec34557e4c5fabbd3a8610a8b0f82b83c0 (diff)
parentafc4110dac85dbdb1fb503aa956561e88b458054 (diff)
Merge pull request #68728 from d-goldin/fix_setools_build
setools: 4.2.0 -> 4.2.2 and fixing build
Diffstat (limited to 'pkgs/os-specific')
-rw-r--r--pkgs/os-specific/linux/setools/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/os-specific/linux/setools/default.nix b/pkgs/os-specific/linux/setools/default.nix
index 1e82c4921595..138b54b02242 100644
--- a/pkgs/os-specific/linux/setools/default.nix
+++ b/pkgs/os-specific/linux/setools/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitHub, bison, flex, python3 , swig
+{ stdenv, fetchFromGitHub, python3
, libsepol, libselinux, checkpolicy
, withGraphics ? false
}:
@@ -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 ];