8 python3Packages.buildPythonApplication rec {
13 src = fetchFromGitHub {
17 hash = "sha256-v4otbDhKKRLywH6aP+mbMR0olHbW+jk4TXTBY+iaxdo=";
20 propagatedBuildInputs = with python3Packages; [ tkinter ];
22 buildInputs = [ unhide ];
25 substituteInPlace unhideGui.py \
26 --replace-fail "\This" "This" \
27 --replace-fail "__credits__" "#__credits__" \
28 --replace-fail "./unhide-linux" "${unhide}/bin/unhide-linux" \
29 --replace-fail "./unhide-tcp" "${unhide}/bin/unhide-tcp"
35 mkdir -p $out/{bin,share/unhideGui}
36 cp -R *.py $out/share/unhideGui
44 makeWrapper "${python3Packages.python.interpreter}" "$out/bin/unhideGui" \
45 --set PYTHONPATH "$PYTHONPATH" \
46 --add-flags "$out/share/unhideGui/unhideGui.py"
52 description = "Forensic tool to find hidden processes and TCP/UDP ports by rootkits, LKMs or other hiding technique";
53 homepage = "https://github.com/YJesus/Unhide";
54 changelog = "https://github.com/YJesus/Unhide/blob/${src.rev}/NEWS";
55 license = lib.licenses.gpl3Only;
56 maintainers = with lib.maintainers; [ tochiaha ];
57 mainProgram = "unhide-gui";
58 platforms = lib.platforms.all;